//when the window loads

window.onload = function(){

	
	
	//script that works only on the lamp page
	if(document.title.indexOf("Lamp") >= 0)
		lamp_menuControl();
		
		
		
		
	//script that works only on the EQUIPMENT page
	//and in its subpages
	else if(document.title.indexOf("Equipment") >= 0){
		menu();		
		submenu();
		specsControl();
		slideShow();
		submenu_section_control();
	}
	
	
	

	//script that works only on the EQUIPMENT page
	//and in its subpages
	else if(document.title.indexOf("Promotions") >= 0){
		menu_control();
	}
	
	else if( document.title.indexOf("Lotions") >= 0){
		menu_control();
	}
		
		
	
	/*
	
	//popup advertising when the index page loads------------------------------------
		var x = 0, y = 0; // default values

		if (document.all) {
		  x = screen.width/3;
		  y = screen.height/4;
		}
		else if (document.layers) {
		  x = window.screenX + 100;
		  y = window.screenY + 100;
		}
		

		var timer = setTimeout( function(){ if( (document.title).indexOf("Welcome") >=0 ){
			var popup = window.open('','silver','width=450,height=603,top='+y+',screenY='+y+',left='+x+',screenX='+x);
			popup.document.write("<img style=\"position:relative; top:-15px; left:-11px\" src=../SCRIPTS//"IMAGES/Concept-1.0_02.gif/">"); 
		} } , 5000);
		

	//popup advertising when the index page loads----------------------------------
	
	
	
	
	*/
	

}



//EAN