if (document.images) {            // Active Images
	img1on = new Image();      
    img1on.src = "res/buffet_button_on.jpg"; 
	img2on = new Image();      
    img2on.src = "res/tour_button_on.jpg";
	img3on = new Image();      
    img3on.src = "res/parties_button_on.jpg";
	img4on = new Image();      
    img4on.src = "res/games_button_on.jpg";
	img5on = new Image();      
    img5on.src = "res/specials_button_on.jpg";
	img6on = new Image();      
    img6on.src = "res/schools_button_on.jpg";
	img17on = new Image();      
    img17on.src = "res/calendarTemp.gif";

	
  
    img1off = new Image();      
    img1off.src = "res/buffet_button.jpg"; 
	img2off = new Image();      
    img2off.src = "res/tour_button.jpg";
	img3off = new Image();      
    img3off.src = "res/parties_button.jpg";
	img4off = new Image();      
    img4off.src = "res/games_button.jpg";
	img5off = new Image();      
    img5off.src = "res/specials_button.jpg";
	img6off = new Image();      
    img6off.src = "res/schools_button.jpg";
	img17off = new Image();      
    img17off.src = "res/calendar.gif";
	
	
	
}



// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// FUNCTION FOR GENERIC POPUP
function openGenericWin(URL, strWindowName, strParams){
	xWindow = window.open(URL,strWindowName,strParams);
}


// -->

