if(document.images) {
        

        var  meetings1 = new Image();
        var  meetings2 = new Image();
        var  catering1 = new Image();
        var  catering2 = new Image();
        var  accommodations1 = new Image();
        var  accommodations2 = new Image();
        var  contact1 = new Image();
        var  contact2 = new Image();
        var  property1 = new Image();
        var  property2 = new Image();

        
     
     
     
     
     
     meetings1.src = "images/homenav_01_off.gif";
     meetings2.src = "images/homenav_01_on.gif";
     catering1.src = "images/homenav_02_off.gif";
     catering2.src = "images/homenav_02_on.gif";
     accommodations1.src = "images/homenav_03_off.gif";
     accommodations2.src = "images/homenav_03_on.gif";
     
     contact1.src = "images/homenav_04_off.gif";
     contact2.src = "images/homenav_04_on.gif";
     property1.src = "images/homenav_05_off.gif";
     property2.src = "images/homenav_05_on.gif";

     




}
function off(imgName) {
        if(document.images)
        document[imgName].src = eval(imgName + '1.src');
}
function on(imgName) {
        if(document.images)
        document[imgName].src = eval(imgName + '2.src');
}


function hiLite(imgDocID, imgObjName) {
    if (document.images) {
		document.images[imgDocID].src = eval(imgObjName + ".src");
	}
}
