// Script for basic image rollover support v1.0

		// create off images, these are the images the user sees before an event fires for the rollover
		home_off = new Image();
		home_off.src = "images/btn_home.gif";

		about_off = new Image();
		about_off.src = "images/btn_about.gif";

		contactus_off = new Image();
		contactus_off.src = "images/btn_contactus.gif";
		
		coolstuff_off = new Image();
		coolstuff_off.src = "images/btn_coolstuff.gif";
		
		employ_off = new Image();
		employ_off.src = "images/btn_employ.gif";

		locations_off = new Image();
		locations_off.src = "images/btn_locations.gif";
		
		menu_off = new Image();
		menu_off.src = "images/btn_menu.gif";
		
		news_off = new Image();
		news_off.src = "images/btn_news.gif";
		
		catering_off = new Image();
		catering_off.src = "images/btn_catering.gif";
		
		prev_off = new Image();
		prev_off.src = "images/btn_prev.gif";
		
		next_off = new Image();
		next_off.src = "images/btn_next.gif";
					
	
		// create the on images, these are the images the user sees on the onMouseOver event
		home_on = new Image();
		home_on.src = "images/btn_homeover.gif";

		about_on = new Image();
		about_on.src = "images/btn_aboutover.gif";

		contactus_on = new Image();
		contactus_on.src = "images/btn_contactusover.gif";
		
		coolstuff_on = new Image();
		coolstuff_on.src = "images/btn_coolstuffover.gif";
		
		employ_on = new Image();
		employ_on.src = "images/btn_employover.gif";

		locations_on = new Image();
		locations_on.src = "images/btn_locationsover.gif";
		
		menu_on = new Image();
		menu_on.src = "images/btn_menuover.gif";
		
		news_on = new Image();
		news_on.src = "images/btn_newsover.gif";
		
		catering_on = new Image();
		catering_on.src = "images/btn_cateringover.gif";
		
		prev_on = new Image();
		prev_on.src = "images/btn_prevover.gif";
		
		next_on = new Image();
		next_on.src = "images/btn_nextover.gif";
		
		function img_On(imgName) {
imgOn = eval(imgName + "_on.src");
document [imgName].src = imgOn;
}

function img_Off(imgName) {
imgOff = eval(imgName + "_off.src");
document [imgName].src = imgOff;
}