        if (document.images) {         					   // Active Images

            img1on = new Image();
            img1on.src = "img/topline2_x.gif";
            img2on = new Image();
            img2on.src = "img/indexnav/reservations_x.gif";
            img3on = new Image();
            img3on.src = "img/indexnav/amenities_x.gif";
			img4on = new Image();
            img4on.src = "img/indexnav/roomsrates_x.gif";
			img5on = new Image();
            img5on.src = "img/indexnav/location_x.gif";
			img6on = new Image();
            img6on.src = "img/indexnav/contact_x.gif";
			img7on = new Image();
            img7on.src = "img/indexnav/photos_x.gif";
			img8on = new Image();
            img8on.src = "img/indexnav/arrow_x.gif";
			img9on = new Image();
            img9on.src = "../img/leftnav/legalassist_x.gif";

            img1off = new Image(); 	
            img1off.src = "img/topline2.gif";
            img2off = new Image(); 	
            img2off.src = "img/indexnav/reservations.gif";
            img3off = new Image();
            img3off.src = "img/indexnav/amenities.gif";
			img4off = new Image(); 		
            img4off.src = "img/indexnav/roomsrates.gif";
			img5off = new Image(); 		
            img5off.src = "img/indexnav/location.gif";
			img6off = new Image();
            img6off.src = "img/indexnav/contact.gif";
			img7off = new Image();
            img7off.src = "img/indexnav/photos.gif";
			img8off = new Image();
            img8off.src = "img/indexnav/arrow.gif";
			img9off = new Image();
            img9off.src = "../img/leftnav/legalassist.gif";

			}

function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}