		if (document.images) 
	
						{       //if image object is available 
						    
						img1on = new Image();		// MouseOver Images Begin Here
						img1on.src = "images_smokeout/menu/index_on.jpg"; 
						img2on = new Image();	
						img2on.src = "images_smokeout/menu/intro_on.jpg"; 
						img3on = new Image();	
						img3on.src = "images_smokeout/menu/summary_on.jpg"; 
						img4on = new Image();	
						img4on.src = "images_smokeout/menu/frame_on.jpg";  
						img5on = new Image();	
						img5on.src = "images_smokeout/menu/rain_on.jpg"; 
						img6on = new Image();	
						img6on.src = "images_smokeout/menu/manipulate_on.jpg"; 
						img7on = new Image();	
						img7on.src = "images_smokeout/menu/community_on.jpg"; 
						img8on = new Image();	
						img8on.src = "images_smokeout/menu/lobby_on.jpg"; 
						img9on = new Image();	
						img9on.src = "images_smokeout/menu/tan_on.jpg"; 
						img10on = new Image();	
						img10on.src = "images_smokeout/menu/ads_on.jpg"; 
						img11on = new Image();	
						img11on.src = "images_smokeout/menu/youth_on.jpg"; 
						
						
						img1off = new Image();		  	// MouseOut Images Begin Here
						img1off.src = "images_smokeout/menu/index_off.jpg"; 
						img2off = new Image();	
						img2off.src = "images_smokeout/menu/intro_off.jpg"; 
						img3off = new Image();	
						img3off.src = "images_smokeout/menu/summary_off.jpg"; 
						img4off = new Image();	
						img4off.src = "images_smokeout/menu/frame_off.jpg";  
						img5off = new Image();	
						img5off.src = "images_smokeout/menu/rain_off.jpg"; 
						img6off = new Image();	
						img6off.src = "images_smokeout/menu/manipulate_off.jpg"; 
						img7off = new Image();	
						img7off.src = "images_smokeout/menu/community_off.jpg"; 
						img8off = new Image();	
						img8off.src = "images_smokeout/menu/lobby_off.jpg"; 
						img9off = new Image();	
						img9off.src = "images_smokeout/menu/tan_off.jpg"; 
						img10off = new Image();	
						img10off.src = "images_smokeout/menu/ads_off.jpg"; 
						img11off = new Image();	
						img11off.src = "images_smokeout/menu/youth_off.jpg"; 

						
						}

		function imgOn(imgName) 
						
						{
        				
        					if (document.images) 
        					
        						{
            						document[imgName].src = eval(imgName + "on.src");        
            			}
            			
            		}
			
		function imgOff(imgName) 
						
						{
        
        					if (document.images) 
        						
        						{
            						
            						document[imgName].src = eval(imgName + "off.src");        
            						
            			}
            			
            		}
