// Get the current year
var myDate = new Date();
var yr = myDate.getFullYear();


// HTML code for the top right banner space on all pages
var html = "<div style=\"display:inline; position:absolute; background-color:#ffffff; right:0px; top:0px;\">" +
			"<a href=\"http://www.fccps.org/md/\">" +
			"<img src=\"http://www.fccps.org/images/4logo_01.gif\" width=\"51\" height=\"78\"" +
			"border=\"0\" alt=\"Mt. Daniel Elementary\"></a>" +
			"<a href=\"http://www.fccps.org/tj/\">" +
			"<img src=\"http://www.fccps.org/images/4logo_02.gif\" width=\"60\" height=\"78\"" +
			"border=\"0\" alt=\"Thomas Jefferson Elementary\"></a>" +
			"<a href=\"http://www.fccps.org/meh/\">" +
			"<img src=\"http://www.fccps.org/images/4logo_03.gif\" width=\"60\" height=\"78\"" +
			"border=\"0\" alt=\"Mary Ellen Henderson Middle\"></a>" +
			"<a href=\"http://www.fccps.org/gm/\">" +
			"<img src=\"http://www.fccps.org/images/4logo_04.gif\" width=\"72\" height=\"78\"" +
			"border=\"0\" alt=\"George Mason High\"></a>" +
			"<img src=\"http://www.fccps.org/images/blank.gif\" width=\"10\" height=\"78\"" +
			"border=\"0\"></a></div>";

// If current year is 2007 || 2008, display the logo
if((yr === 2009) || (yr === 2010)){
	document.write(html);
}
