// Rollover javascript
	function preloadImages(){
		var path = "../images/";
	
		if(document.images) {
			myImg = new Array();
			<!--//topnav images //-->
			myImg[0] = new Image();
			myImg[0].src = path + "analysts_sub.gif";
			myImg[1] = new Image();
			myImg[1].src = path + "analysts_sub_on.gif";
			myImg[2] = new Image();
			myImg[2].src = path + "calendar_sub.gif";
			myImg[3] = new Image();
			myImg[3].src = path + "calendar_sub_on.gif";
			myImg[4] = new Image();
			myImg[4].src = path + "chart_sub.gif";
			myImg[5] = new Image();
			myImg[5].src = path + "chart_sub_on.gif";
			myImg[6] = new Image();
			myImg[6].src = path + "corpgov_sub.gif";
			myImg[7] = new Image();
			myImg[7].src = path + "corpgov_sub_on.gif";
			myImg[8] = new Image();
			myImg[8].src = path + "earnings_sub.gif";
			myImg[9] = new Image();
			myImg[9].src = path + "earnings_sub_on.gif";
			myImg[10] = new Image();
			myImg[10].src = path + "email_sub.gif";
			myImg[11] = new Image();
			myImg[11].src = path + "email_sub_on.gif";
			myImg[12] = new Image();
			myImg[12].src = path + "faq_sub.gif";
			myImg[13] = new Image();
			myImg[13].src = path + "faq_sub_on.gif";
			myImg[14] = new Image();
			myImg[14].src = path + "fundamentals_sub_on.gif";
			myImg[15] = new Image();
			myImg[15].src = path + "fundamentals_sub.gif";
			myImg[16] = new Image();
			myImg[16].src = path + "info_sub_on.gif";
			myImg[17] = new Image();
			myImg[17].src = path + "info_sub.gif";
			myImg[18] = new Image();
			myImg[18].src = path + "manage_sub_on.gif";
			myImg[19] = new Image();
			myImg[19].src = path + "manage_sub.gif";
			myImg[20] = new Image();
			myImg[20].src = path + "news_sub_on.gif";
			myImg[21] = new Image();
			myImg[21].src = path + "news_sub.gif";
			myImg[22] = new Image();
			myImg[22].src = path + "quote_sub_on.gif";
			myImg[23] = new Image();
			myImg[23].src = path + "quote_sub.gif";
			myImg[24] = new Image();
			myImg[24].src = path + "sec_sub_on.gif";
			myImg[25] = new Image();
			myImg[25].src = path + "sec_sub.gif";			
			myImg[26] = new Image();
			myImg[26].src = path + "overview_sub_on.gif";
			myImg[27] = new Image();
			myImg[27].src = path + "overview_sub.gif";	
			myImg[28] = new Image();
			myImg[28].src = path + "rollover/nav_product.gif";
			myImg[29] = new Image();
			myImg[29].src = path + "rollover/nav_product_on.gif";
			myImg[30] = new Image();
			myImg[30].src = path + "rollover/nav_hours.gif";
			myImg[31] = new Image();
			myImg[31].src = path + "rollover/nav_hours_on.gif";
			myImg[32] = new Image();
			myImg[32].src = path + "rollover/nav_locator.gif";
			myImg[33] = new Image();
			myImg[33].src = path + "rollover/nav_locator_on.gif";			
			myImg[34] = new Image();
			myImg[34].src = path + "rollover/nav_new.gif";
			myImg[35] = new Image();
			myImg[35].src = path + "rollover/nav_new_on.gif";
						
			return myImg;
		}
	}
	
	function rollOn(img,src){
		if(document.images) img.src= src;
	}
	
	function rollOff(img,src){
		if(document.images) img.src= src;
	}

	function threeimages(){
		var imgsrc =  Math.floor(Math.random()*17)+1; 
		var imgsrc2 =  Math.floor(Math.random()*17)+1; 
		var imgsrc3 =  Math.floor(Math.random()*17)+1; 
		
		while(imgsrc == imgsrc2) {
			imgsrc2 =  Math.floor(Math.random()*17)+1; 
		} 
		while (imgsrc2 == imgsrc3 || imgsrc == imgsrc3) {
			imgsrc3 =  Math.floor(Math.random()*17)+1; 
		}	
			
		document.getElementById("test").src = "../images/random/" + imgsrc + ".jpg"; 
		document.getElementById("test2").src = "../images/random/" + imgsrc2 + ".jpg"; 
		document.getElementById("test3").src = "../images/random/" + imgsrc3 + ".jpg";
	
	}