// JavaScript Menu 
function change(adr){ 

if (adr.indexOf("home.shtml")!=-1){
document.getElementById("container").style.background = "url(includes/home.jpg) no-repeat"; 
document.getElementById("hours").style.backgroundColor = "#C0E469";  
document.getElementById("hours_title").style.backgroundColor = "#C0E469";    
}
if(adr.indexOf("eat.shtml")!=-1){
document.getElementById("container").style.background = "url(includes/eat.jpg) no-repeat"; 
document.getElementById("hours").style.backgroundColor = "#FEEA45";  
document.getElementById("hours_title").style.backgroundColor = "#FEEA45";   
document.getElementById("eat_btn").style.backgroundColor = "#FF0000";  
}
if(adr.indexOf("drink.shtml")!=-1){
document.getElementById("container").style.background = "url(includes/drink.jpg) no-repeat"; 
document.getElementById("hours").style.backgroundColor = "#FFA739";
document.getElementById("hours_title").style.backgroundColor = "#FFA739";  
document.getElementById("drink_btn").style.backgroundColor = "#FF0000";  
}
if(adr.indexOf("menu.shtml")!=-1){
document.getElementById("container").style.background = "url(includes/menu.jpg) no-repeat"; 
document.getElementById("hours").style.backgroundColor = "#F6FC7E";
document.getElementById("hours_title").style.backgroundColor = "#F6FC7E"; 
document.getElementById("menu_btn").style.backgroundColor = "#FF0000";  
}
if(adr.indexOf("about.shtml")!=-1){
document.getElementById("container").style.background = "url(includes/about.jpg) no-repeat"; 
document.getElementById("hours").style.backgroundColor = "#FF81E5";
document.getElementById("hours_title").style.backgroundColor = "#FF81E5";  
document.getElementById("about_btn").style.backgroundColor = "#FF0000";  
}
if(adr.indexOf("press.shtml")!=-1){
document.getElementById("container").style.background = "url(includes/press.jpg) no-repeat"; 
document.getElementById("hours").style.backgroundColor = "#79A4F3";
document.getElementById("hours_title").style.backgroundColor = "#79A4F3";
document.getElementById("press_btn").style.backgroundColor = "#FF0000";    
}
if(adr.indexOf("events.shtml")!=-1){
document.getElementById("container").style.background = "url(includes/event.jpg) no-repeat"; 
document.getElementById("hours").style.backgroundColor = "#FE6301"; 
document.getElementById("hours_title").style.backgroundColor = "#FE6301"; 
document.getElementById("events_btn").style.backgroundColor = "#FF0000";   
}
if((adr.indexOf("contact.shtml")!=-1) || (adr.indexOf("ok.shtml")!=-1) || (adr.indexOf("error.shtml")!=-1)){
document.getElementById("container").style.background = "url(includes/contact.jpg) no-repeat"; 
document.getElementById("hours").style.backgroundColor = "#E5E5E5";
document.getElementById("hours_title").style.backgroundColor = "#E5E5E5";  
document.getElementById("contact_btn").style.backgroundColor = "#FF0000";  
}

} 