var flgLoaded;//variable for top nav, not related to rollovers on left
flgLoaded = 0;
function stopError(){
		return true;
	}
	window.onerror = stopError;

/*here is actual rollover code*/
if (document.images) {
	
	// ON STATE
	
	image1on = new Image();
	image1on.src = "images/company_on.gif";
	image2on = new Image();
	image2on.src = "images/people_on.gif";
	image3on = new Image();
	image3on.src = "images/skills_on.gif";
	image4on = new Image();
	image4on.src = "images/mobility_on.gif";
	image5on = new Image();
	image5on.src = "images/money_on.gif";
	image6on = new Image();
	image6on.src = "images/fastpace_on.gif";
	image7on = new Image();
	image7on.src = "images/indexUS/homeUSAgameOver.jpg";
	
	image8on = new Image();
	image8on.src = "images/movies/btn_flash_on.gif";
	
		
	// OFF STATE

	image1off = new Image();
	image1off.src = "images/company_off.gif";
	image2off = new Image();
	image2off.src = "images/people_off.gif";
	image3off = new Image();
	image3off.src = "images/skills_off.gif";
	image4off = new Image();
	image4off.src = "images/mobility_off.gif";
	image5off = new Image();
	image5off.src = "images/money_off.gif";
	image6off = new Image();
	image6off.src = "images/fastpace_off.gif";
	image7off = new Image();
	image7off.src = "images/indexUS/homeUSAgameOff.jpg";
	image8off = new Image();
	image8off.src = "images/movies/btn_flash_off.gif";
	
	
	// DEFAULT STATE	
	
	info = new Image();
	info.src = "images/txt_whats_important.gif";
	
	// TEXT ROLLOVER STATE
	
	txt1 = new Image();
	txt1.src = "images/txt_six_billion.gif";
	
	txt2 = new Image();
	txt2.src = "images/txt_people_enjoy.gif";
	
	txt3 = new Image();
	txt3.src = "images/txt_marketable_skills.gif";
	
	txt4 = new Image();
	txt4.src = "images/txt_promotions.gif";
	
	txt5 = new Image();
	txt5.src = "images/txt_incredible_earning.gif";
	
	txt6 = new Image();
	txt6.src = "images/txt_never_bored.gif";
	
	txt7 = new Image();
	txt7.src = "images/indexUs/funAndHd.gif";

	dotOn = new Image();
	dotOn.src = "flash/dot_over.jpg";
	dotOff = new Image();
	dotOff.src = "flash/dot_off.jpg";
	
	//New pay images 
	pay01Off = new Image();
	pay01Off.src = "images/pay01.jpg";
	
	pay01On = new Image();
	pay01On.src = "images/pay01_over.jpg";
	
	pay02Off = new Image();
	pay02Off.src = "images/pay02.jpg";
	
	pay02On = new Image();
	pay02On.src = "images/pay02_over.jpg";
	
	pay03Off = new Image();
	pay03Off.src = "images/pay03.jpg";
	
	pay03On = new Image();
	pay03On.src = "images/pay03_over.jpg";
	
	payArrowOff = new Image();
	payArrowOff.src = "images/pay_arrow.jpg";
	
	payArrowOn = new Image();
	payArrowOn.src = "images/pay_arrow_over.jpg";
 }

function changeImages() {
if (document.images) {
	for (var i=0; i<changeImages.arguments.length; i+=2) {
		document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
		}
	}
 }


