<!--

// Apartment Menu Switches

function chgColorON(id) { 
// clear colors 
document.getElementById("cell1").style.backgroundColor = "#056AAA"; 
document.getElementById("cell2").style.backgroundColor = "#056AAA";
document.getElementById("cell3").style.backgroundColor = "#056AAA";
document.getElementById("cell4").style.backgroundColor = "#056AAA";
document.getElementById("cell5").style.backgroundColor = "#056AAA";
document.getElementById("cell6").style.backgroundColor = "#056AAA";
document.getElementById("cell7").style.backgroundColor = "#056AAA";
document.getElementById("cell8").style.backgroundColor = "#056AAA";
document.getElementById("cell9").style.backgroundColor = "#056AAA";
document.getElementById("cell10").style.backgroundColor = "#056AAA";
document.getElementById("cell11").style.backgroundColor = "#056AAA";
document.getElementById("cell12").style.backgroundColor = "#056AAA";
document.getElementById("cell13").style.backgroundColor = "#056AAA";
document.getElementById("cell14").style.backgroundColor = "#056AAA";
document.getElementById("cell15").style.backgroundColor = "#056AAA";
document.getElementById("cell16").style.backgroundColor = "#056AAA";
// highlight selected cell 
document.getElementById(id).style.backgroundColor = "#095D92"; 
} 

function chgColorOFF(id) { 
// clear colors 
document.getElementById(id).style.backgroundColor.Restore = "#095D92";
// highlight selected cell 
document.getElementById(id).style.backgroundColor = "#056AAA"; 
} 

// -->
