// JavaScripts for home.aspx

// show single image all the time
function showSingleImage()
{ 
	document.write('<img border="0" width="300" height="132" src="images/header/white/4.jpg">');
}

// show a different home page picture each day... mostly
function showImage()
{ 
	now=new Date();
	day=now.getDay();
	
	if (day == 2)// sunday
		document.write('<img border="0" width="300" height="132" alt="CEESI Gas Loops" src="images/header/white/10.jpg">');
	else if (day == 0)
		document.write('<img border="0" width="300" height="132" alt="Tour of Natural Gas High Flow Facility" src="images/header/white/1.jpg">');
	else if (day == 3)
		document.write('<img border="0" width="300" height="132" alt="CEESI calibrates meters of all sizes" src="images/header/white/11.jpg">');
	else if (day == 4)
		document.write('<img border="0" width="300" height="132" alt="CEESI facilities can accommodate very high flow rates" src="images/header/white/12.jpg">');
	else if (day == 5)
		document.write('<img border="0" width="300" height="132" alt="Natural Gas High Flow Facility Turbines" src="images/header/white/13.jpg">');
	else if (day == 1)
		document.write('<img border="0" width="300" height="132" alt="High Flow Calibration Test Stand" src="images/header/white/9.jpg">'); //9
	else // saturday
		document.write('<img border="0" width="300" height="132" alt="Natural Gas High Flow Facility Turbines" src="images/header/white/3.jpg">');
}

function showHolidayImage() 
{ document.write('<a href="holiday.aspx"><img border="0" width="300" height="132" alt="View holiday closure schedule" src="images/header/white/holiday.jpg"></a>') }



