<!-- Cache images -->

img1 = new Image();
img1.src = "images/accommodationC.jpg";

img2 = new Image();
img2.src = "images/restaurantC.jpg";

img3 = new Image();
img3.src = "images/conferenceC.jpg";


function glow(e){
    document.getElementById(e).style.backgroundColor = "#6F6359";   

}

function unglow(e){
    document.getElementById(e).style.backgroundColor = "transparent";

}

function rollover(which, newD){
    document.getElementById(which).setAttribute("src", newD);
}
function rollout(which, oldD){
    document.getElementById(which).setAttribute("src", oldD);
}


function lightUp(which){ 
document.getElementById(which).style.opacity = .7;
document.getElementById(which).style.filter = "alpha(opacity=70)"
}

function lightOff(which){ 
document.getElementById(which).style.opacity = 1;
document.getElementById(which).style.filter = "alpha(opacity=100)"
}
