var date = new Date();
var year = date.getFullYear();
if(year > 2007){
	document.write(' - '+year);
}

