var theImages = new Array()

if (g_sSectionTitle!='Welcome') { // it's not the home page
	theImages[0] = 'banners/1.jpg';
	theImages[1] = 'banners/2.jpg';
	theImages[2] = 'banners/3.jpg';
	theImages[3] = 'banners/4.jpg';
	theImages[4] = 'banners/5.jpg';
	theImages[5] = 'banners/6.jpg';
	theImages[6] = 'banners/7.jpg';
	theImages[7] = 'banners/8.jpg';
	theImages[8] = 'banners/9.jpg';
	theImages[9] = 'banners/10.jpg';
	theImages[10] = 'banners/11.jpg';
	theImages[11] = 'banners/12.jpg';
	theImages[12] = 'banners/13.jpg';
	theImages[13] = 'banners/14.jpg';
	theImages[14] = 'banners/15.jpg';
	//the following banners are duplicates of the above in order to appear more frequently
	theImages[15] = 'banners/1.jpg';
	theImages[16] = 'banners/3.jpg';
	theImages[17] = 'banners/4.jpg';
	theImages[18] = 'banners/6.jpg';
	theImages[19] = 'banners/7.jpg';
	theImages[20] = 'banners/10.jpg';
	theImages[21] = 'banners/12.jpg';
	theImages[22] = 'banners/13.jpg';
	//the following banners are second duplicates of the above in order to appear more frequently
	theImages[23] = 'banners/1.jpg';
	theImages[24] = 'banners/3.jpg';
	theImages[25] = 'banners/4.jpg';
	theImages[26] = 'banners/6.jpg';
	theImages[27] = 'banners/7.jpg';
	theImages[28] = 'banners/10.jpg';
	theImages[29] = 'banners/12.jpg';
	theImages[30] = 'banners/13.jpg';
} else { // it's the home page
	theImages[0] = 'banners/1.jpg';
	theImages[1] = 'banners/3.jpg';
	theImages[2] = 'banners/4.jpg';
	theImages[3] = 'banners/6.jpg';
	theImages[4] = 'banners/7.jpg';
	theImages[5] = 'banners/10.jpg';
	theImages[6] = 'banners/12.jpg';
	theImages[7] = 'banners/13.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));

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}