var theImages = new Array(); 

//theImages[0] = 'images/header2.jpg';
//theImages[1] = 'images/header3.jpg';
//theImages[2] = 'images/header4.jpg';
//theImages[3] = 'images/header5.jpg';
//theImages[4] = 'images/header6.jpg';
//theImages[5] = 'images/header7.jpg';
//theImages[6] = 'images/header10.jpg';
//theImages[7] = 'images/header13.jpg';
//theImages[8] = 'images/header14.jpg';
//theImages[9] = 'images/header16.jpg';
//theImages[10] = 'images/header17.jpg';
//theImages[11] = 'images/header18.jpg';
//theImages[12] = 'images/header19.jpg';
//theImages[13] = 'images/header20.jpg';
//theImages[14] = 'images/header21.jpg';
//theImages[15] = 'images/header22.jpg';
//theImages[16] = 'images/header23.jpg';
//theImages[17] = 'images/header24.jpg';
//theImages[18] = 'images/header25.jpg';
//theImages[19] = 'images/header26.jpg';
//theImages[20] = 'images/header27.jpg';
//theImages[21] = 'images/header28.jpg';
//theImages[22] = 'images/header29.jpg';
//theImages[23] = 'images/header30.jpg';// Images 31-48 added 4/15/08
theImages[0] = 'images/header31.jpg';
theImages[1] = 'images/header32.jpg';
theImages[2] = 'images/header33.jpg';
theImages[3] = 'images/header34.jpg';
theImages[4] = 'images/header35.jpg';
theImages[5] = 'images/header36.jpg';
theImages[6] = 'images/header37.jpg';
theImages[7] = 'images/header38.jpg';
theImages[8] = 'images/header39.jpg';
theImages[9] = 'images/header40.jpg';
theImages[10] = 'images/header41.jpg';
theImages[11] = 'images/header42.jpg';
theImages[12] = 'images/header43.jpg';
theImages[13] = 'images/header44.jpg';
theImages[14] = 'images/header45.jpg';
theImages[15] = 'images/header46.jpg';
theImages[16] = 'images/header47.jpg';
theImages[17] = 'images/header48.jpg';
theImages[18] = 'images/header13.jpg';
theImages[19] = 'images/header18.jpg';
theImages[20] = 'images/header29.jpg';
theImages[21] = 'images/header27.jpg';
theImages[22] = 'images/header25.jpg';
theImages[23] = 'images/header19.jpg';
theImages[24] = 'images/header28.jpg';
theImages[25] = 'images/header30.jpg';

var j = 0;
var p = theImages.length;

/*
var preBuffer = new Array();
for (i = 0; i < p; i++){
   preBuffer[i] = new Image();
   preBuffer[i].src = theImages[i]
}
*/

var whichImage = Math.round(Math.random()*(p-1));

var theSloganImages = new Array();
theSloganImages[0] = 'images/slogan_excel.gif';
theSloganImages[1] = 'images/slogan_achievement.gif';
theSloganImages[2] = 'images/slogan_future.gif';
theSloganImages[3] = 'images/slogan_education.gif';

var sloganlen = theSloganImages.length;
/*
var sloganPreBuffer = new Array();
for (var i = 0; i < sloganlen; i++)
{
	sloganPreBuffer[i] = new Image();
	sloganPreBuffer[i].src = theSloganImages[i];
}
*/
var whichSloganImage = Math.round(Math.random()*(sloganlen-1));

function showImage(sParentPath)
{
	banner.style.background='url(' + (sParentPath != null ? sParentPath : '') + theImages[whichImage]+ ')';
	slogan.style.background='url(' + (sParentPath != null ? sParentPath : '') + theSloganImages[whichSloganImage] + ')';
}


