<!--

 var flag = false;

 function imageLoad() {  // called with onLoad()
 
 
     if (document.images) {
     
         aboutus_roll = new Image(); aboutus_roll.src = "images/menu_aboutus_roll.gif";
         product_roll = new Image(); product_roll.src = "images/menu_product_roll.gif";
         photo_roll = new Image(); photo_roll.src = "images/menu_photo_roll.gif";
         applications_roll = new Image(); applications_roll.src = "images/menu_applications_roll.gif";
         request_roll = new Image(); request_roll.src = "images/menu_request_roll.gif";
         production_roll = new Image(); production_roll.src = "images/menu_production_roll.gif";
         sub_product_roll = new Image(); sub_product_roll.src = "images/sub_product.gif";
         sub_0 = new Image(); sub_0.src = "images/sub_0.gif";
         
         aboutus_lite_on = new Image(); aboutus_lite_on.src = "images/menu_aboutus_on.gif";
         product_lite_on = new Image(); product_lite_on.src = "images/menu_product_on.gif";
         photo_lite_on = new Image(); photo_lite_on.src = "images/menu_photo_on.gif";
         applications_lite_on = new Image(); applications_lite_on.src = "images/menu_applications_on.gif";
         request_lite_on = new Image(); request_lite_on.src = "images/menu_request_on.gif";
         production_lite_on = new Image(); production_lite_on.src = "images/menu_production_on.gif";
         
          // and so on until you load them all          
         return (flag = true);  // set the flag and let the function know know it can work
 		}
 		

 }
 
 

 if (document.images) {   // load the off images 
 
         aboutus_off = new Image(); aboutus_off.src = "images/menu_aboutus.gif";
         product_off = new Image(); product_off.src = "images/menu_product.gif";
         production_off = new Image(); production_off.src = "images/menu_production.gif";
         photo_off = new Image(); photo_off.src = "images/menu_photo.gif";
         applications_off = new Image(); applications_off.src = "images/menu_applications.gif";
         request_off = new Image(); request_off.src = "images/menu_request.gif";

 }


 function move_in(imgName) {
 

 
 	if(document.images && imgName == lite && (flag == true)) {
 	
 	document[imgName].src = eval(imgName + "_lite_on.src")
 	
 	} else if(document.images && (flag == true)) {
 	
 	document[imgName].src = eval(imgName + "_roll.src")
 	
 	} 
         
      } 

 function move_out(imgName) {  // the normal onMouseOut function
 
 	if(document.images && imgName == lite && (flag == true)) {
 	
 	document[imgName].src = eval(imgName + "_lite_on.src")
 	
 	} else {
	
	document[imgName].src = eval(imgName + "_off.src");
	
	}
         
      } 

 // -->
