// JavaScript Document

function loadimages()
{
	if (document.images)
	{
	pic1= new Image(111,76); 
	pic1.src="images/nav-about-on.gif";

	pic2= new Image(117,76); 
	pic2.src="images/nav-eat-on.gif";
	
	pic3= new Image(123,76); 
	pic3.src="images/nav-drink-on.gif";
	
	pic4= new Image(120,76); 	
	pic4.src="images/nav-mix-on.gif";
	
	pic5= new Image(117,76); 
	pic5.src="images/nav-info-on.gif";
	
	pic6= new Image(137,76); 
	pic6.src="images/nav-reserve-on.gif";
	
	pic7= new Image(40,20); 
	pic7.src="images/icon-home-on.gif";
	
	pic8= new Image(37,20); 
	pic8.src="images/icon-contact-on.gif";
	
	pic9= new Image(38,20); 
	pic9.src="images/icon-info-on.gif";
	}
}

function rollover(image)
{
	var name = image.alt;
	image.src = "images/icon-"+name+"-on.gif";	
}
function rollout(image)
{
	var name = image.alt;
	image.src = "images/icon-"+name+".gif";	
}

function popUp(url) {
	return window.open(url, "thewindow", "width=640, height=700, resize=no, menubar=no, status=yes");
}

function showPic (whichpic) {
	if (document.getElementById) {
		document.getElementById('placeholder').src = whichpic.href;
		return false;
	} else {
		return true;
	}
}
function clearText(thefield) {

  if (thefield.defaultValue==thefield.value) { thefield.value = "" }

} 

function replaceText(thefield) {

  if (thefield.value=="") { thefield.value = thefield.defaultValue }

}