<!--	

//for menu mouseovers
image1 = new Image();
image1.src = "images/menu2_1.gif";

image2 = new Image();
image2.src = "images/menu2_3.gif";

image3 = new Image();
image3.src = "images/menu2_5.gif";

image4 = new Image();
image4.src = "images/menu2_7.gif";

image5 = new Image();
image5.src = "images/menu2_9.gif";

image6 = new Image();
image6.src = "images/menu2_10.gif";

image7 = new Image();
image7.src = "images/menu2_12.gif";

image8 = new Image();
image8.src = "images/menu2_14.gif";

image9 = new Image();
image9.src = "images/menu2_16.gif";

image10 = new Image();
image10.src = "images/homemenu2_1.gif";


//script for image rollovers	
	
function move_in(img_name,img_src) 
	{
	document[img_name].src=img_src;
	}

function move_out(img_name,img_src) 
	{
	document[img_name].src=img_src;
	}	
	
//script for pop-up windows with all features
	
var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=yes,directories=no,status=no,menubar=yes,toolbar=yes,resizable=yes';
win=window.open(mypage,myname,settings);}

	
	
//script for pop-up windows with no nav and other features
	
var win=null;
function LimWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
win=window.open(mypage,myname,settings);}		



//reservation pop-up
	
var win=null;
function resWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=yes,toolbar=yes,resizable=yes';
win=window.open(mypage,myname,settings);}





//SoftShell Solutions
//http://www.softshell.net/
//PrintPage - a browser friendly print function
function printpage() {
	if (window.print) {
		window.print();
	} else {
		alert('To print this page, select Print from the file menu.');
	}
}

function WM_preloadImages() {

/*
WM_preloadImages()
Loads images into the browser's cache for later use.

Source: Webmonkey Code Library
(http://www.hotwired.com/webmonkey/javascript/code_library/)

Author: Nadav Savio
Author Email: nadav@wired.com

*/

  // Don't bother if there's no document.images
  if (document.images) {
    if (typeof(document.WM) == 'undefined'){
      document.WM = new Object();
    }
    document.WM.loadedImages = new Array();
    // Loop through all the arguments.
    var argLength = WM_preloadImages.arguments.length;
    for(arg=0;arg<argLength;arg++) {
      // For each arg, create a new image.
      document.WM.loadedImages[arg] = new Image();
      // Then set the source of that image to the current argument.
      document.WM.loadedImages[arg].src = WM_preloadImages.arguments[arg];
    }
  }
}

// drop-down menu
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

//form colors
function crofton(obj, myevent){

	if ( myevent == 1 ) {
		obj.style.border='1 solid Black';
		obj.style.background = '#DAD7C2';
	}
	if ( myevent == 0 ) {
		obj.style.border='1 solid Black';
		obj.style.background = 'white';
		prevVal = obj.value;
	}
	
}


//Pixelating Image slideshow
//Copyright Dynamic Drive 2001
//Visit http://www.dynamicdrive.com for this script

//specify interval between slide (in mili seconds)
var slidespeed=3000
//specify images
var slideimages=new Array("../images/menuSlide1.jpg","../images/menuSlide2.jpg","../images/menuSlide3.jpg","../images/menuSlide4.jpg","../images/menuSlide5.jpg","../images/menuSlide6.jpg")
//specify corresponding links
var slidelinks=new Array("#top","#top","#top")

var imageholder=new Array()
var ie55=window.createPopup
for (i=0;i<slideimages.length;i++){
imageholder[i]=new Image()
imageholder[i].src=slideimages[i]
}

function gotoshow(){
window.location=slidelinks[whichlink]
}



//slideshow from home page
function reapply(){
setTimeout("slideit()",5000)
return true
}
window.onerror=reapply
var image1=new Image()
image1.src="images/homeSlide1.jpg"
var image2=new Image()
image2.src="images/homeSlide2.jpg"
var image3=new Image()
image3.src="images/homeSlide3.jpg"
var image4=new Image()
image4.src="images/homeSlide4.jpg"



//-->