<!-- 

var home_Status = "Click here for the Bike Shenandoah home page";
var why_Status = "Click here and find out why you should cycle in the Bike Shenandoah event";
var schedule_Status = "Click here for this years schedule and routes";
var reg_Status = "Click here for registration info or a printable form to mail in";
var preps_Status = "Click here to view our preparation list";
var sponsors_Status = "Click here to view the sponsors of this years event";
var events_Status = "Click here to view some photos of past Bike Shenandoah events";

// Mouse Over Start 
        if (document.images) {
				            	                	              	                           	                    	                 	            	 
            	home_on = new Image();       
            	home_on.src = "images/buttons/home_on.gif";    
                home_off = new Image();  
            	home_off.src = "images/buttons/home_off.gif"; 
				            	                	              	                           	                    	                 	            	 
            	schedule_on = new Image();       
            	schedule_on.src = "images/buttons/schedule_on.gif";   
                schedule_off = new Image();  
            	schedule_off.src = "images/buttons/schedule_off.gif"; 
				            	                	              	                           	                    	                 	            	 
            	why_on = new Image();       
            	why_on.src = "images/buttons/why_on.gif"; 
            	why_off = new Image();       
            	why_off.src = "images/buttons/why_off.gif";
   
                sponsors_on = new Image();  
            	sponsors_on.src = "images/buttons/sponsors_on.gif"; 
                sponsors_off = new Image();  
            	sponsors_off.src = "images/buttons/sponsors_off.gif";
				            	                	              	                           	                    	                 	            	 
            	reg_on = new Image();       
            	reg_on.src = "images/buttons/reg_on.gif";    
                reg_off = new Image();  
            	reg_off.src = "images/buttons/reg_off.gif"; 

            	preps_on = new Image();       
            	preps_on.src = "images/buttons/preps_on.gif";   
                preps_off = new Image();  
            	preps_off.src = "images/buttons/preps_off.gif"; 
				            	                	              	                           	                    	                 	            	 
            	events_on = new Image();       
            	events_on.src = "images/buttons/events_on.gif";   
                events_off = new Image();  
            	events_off.src = "images/buttons/events_off.gif"; 
            	            	              	            	              	            	             	            	 	   			
        }  

// Function to 'activate' images. 
function imgOn(imgName) { 
        if (document.images) { 
            document[imgName].src = eval(imgName + "_on.src"); 
        } 
	window.status = eval(imgName + "_Status");                     
 return true                        
}  

// Function to 'deactivate' images. 
function imgOff(imgName) { 
        if (document.images) { 
            document[imgName].src = eval(imgName + "_off.src"); 
        } 
	window.status = "";                     
 return true
} 

// Function to 'mousedown' images. 
function imgDown(imgName) { 
        if (document.images) { 
            document[imgName].src = eval(imgName + "_down.src"); 
        } 
	window.status = "";                     
 return true 
}  

// --> 

	
