<!--
if (document.images) 
{
	welcome_on = new Image();
	welcome_on.src = "img/frmk/welcome_h.gif";
	menu_on = new Image();
	menu_on.src = "img/frmk/menu_h.gif";
	specials_on = new Image();
	specials_on.src = "img/frmk/specials_h.gif";
	safari_room_on = new Image();
	safari_room_on.src = "img/frmk/safari_room_h.gif";
	directions_on = new Image();
	directions_on.src = "img/frmk/directions_h.gif";
	contact_us_on = new Image();
	contact_us_on.src = "img/frmk/contact_us_h.gif";
	
	welcome_off = new Image();
	welcome_off.src = "img/frmk/welcome.gif";
	menu_off = new Image();
	menu_off.src = "img/frmk/menu.gif";
	specials_off = new Image();
	specials_off.src = "img/frmk/specials.gif";
	safari_room_off = new Image();
	safari_room_off.src = "img/frmk/safari_room.gif";
	directions_off = new Image();
	directions_off.src = "img/frmk/directions.gif";
	contact_us_off = new Image();
	contact_us_off.src = "img/frmk/contact_us.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"); 
	} 
}

function popImage(imgName)
{
	window.open(imgName);
}
//-->
