   
       var n3 = false;
       

       home       = new Image();
       home.src   = "images/navigate/home_OFF.jpg";
       homeon     = new Image();
       homeon.src = "images/navigate/home_ON.jpg"
       
       breakfast       = new Image();
       breakfast.src   = "images/navigate/breakfast_OFF.jpg";
       breakfaston     = new Image();
       breakfaston.src = "images/navigate/breakfast_ON.jpg"
       
       lunch       = new Image();
       lunch.src   = "images/navigate/lunch_OFF.jpg";
       lunchon     = new Image();
       lunchon.src = "images/navigate/lunch_ON.jpg"
       
       dinner       = new Image();
       dinner.src   = "images/navigate/dinner_OFF.jpg";
       dinneron     = new Image();
       dinneron.src = "images/navigate/dinner_ON.jpg"       
             
       location1       = new Image();
       location1.src   = "images/navigate/location_OFF.jpg";
       location1on     = new Image();
       location1on.src = "images/navigate/location_ON.jpg"   

       contact       = new Image();
       contact.src   = "images/navigate/contact_OFF.jpg";
       contacton     = new Image();
       contacton.src = "images/navigate/contact_ON.jpg"             
    
    
function MM_openBrWindow(theURL,winName,features)
{
	window.open(theURL,winName,features);
}
    
    
function MM_preloadImages() 
{
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}    
    
       function on3(name)
       {
           document[name].src = eval(name + "on.src");
       }
    
       function off3(name)
       {
           document[name].src = eval(name + ".src");
       }
    
       n3 = true;
       function on(name)
       {
          if (n3)
             on3(name);
       }
    
       function off(name)
       {
          if (n3)
             off3(name);
       }