// JavaScript Document

   our_food_on= new Image();
   our_food_on.src="images/nav_our_food_on.gif";

   history_on= new Image();
   history_on.src="images/nav_history_on.gif";

   locations_on= new Image();
   locations_on.src="images/nav_locations_on.gif";
   
   franchise_on= new Image();
   franchise_on.src="images/nav_franchise_on.gif";

   employment_on= new Image();
   employment_on.src="images/nav_employment_on.gif";

   gift_cards_on= new Image();
   gift_cards_on.src="images/nav_gift_cards_on.gif";

   comments_on= new Image();
   comments_on.src="images/nav_comments_on.gif";

   join_the_club_on= new Image();
   join_the_club_on.src="images/nav_join_the_club_on.gif";
   
   join_club_on= new Image();
   join_club_on.src="images/nav_join_club_on.gif";
   
   // Set "off" images (onmouseout)
   our_food_off= new Image();
   our_food_off.src="images/nav_our_food_off.gif";

   history_off= new Image();
   history_off.src="images/nav_history_off.gif";

   locations_off= new Image();
   locations_off.src="images/nav_locations_off.gif";
   
   franchise_off= new Image();
   franchise_off.src="images/nav_franchise_off.gif";

   employment_off= new Image();
   employment_off.src="images/nav_employment_off.gif";

   gift_cards_off= new Image();
   gift_cards_off.src="images/nav_gift_cards_off.gif";

   comments_off= new Image();
   comments_off.src="images/nav_comments_off.gif";
 
   join_the_club_off= new Image();
   join_the_club_off.src="images/nav_join_the_club_off.gif";
   
   join_club_off= new Image();
   join_club_off.src="images/nav_join_club_off.gif";
   
   kids_on= new Image();
   kids_on.src="images/nav_menu_kids_on.gif";
   
   kids_off= new Image();
   kids_off.src="images/nav_menu_kids_off.gif";
   
   whats_new_on= new Image();
   whats_new_on.src="images/nav_menu_whats_new_on.gif"; 
   
   whats_new_off= new Image();
   whats_new_off.src="images/nav_menu_whats_new_off.gif"; 
   
   catering_on= new Image();
   catering_on.src="images/nav_menu_catering_on.gif";
   
   catering_off= new Image();
   catering_off.src="images/nav_menu_catering_off.gif";
   
   to_go_on= new Image();
   to_go_on.src="images/nav_menu_to_go_on.gif"; 
   
   to_go_off= new Image();
   to_go_off.src="images/nav_menu_to_go_off.gif"; 
   
   menu_on= new Image();
   menu_on.src="images/nav_menu_menu_on.gif"; 
   
   menu_off= new Image();
   menu_off.src="images/nav_menu_menu_off.gif"; 
   
   cost_on= new Image();
   cost_on.src="images/nav_cost_on.gif";
   
   cost_off= new Image();
   cost_off.src="images/nav_cost_off.gif";
   
   development_on= new Image();
   development_on.src="images/nav_development_on.gif"; 
   
   development_off= new Image();
   development_off.src="images/nav_development_off.gif"; 
   
   operations_on= new Image();
   operations_on.src="images/nav_operations_on.gif"; 
   
   operations_off= new Image();
   operations_off.src="images/nav_operations_off.gif"; 
   
   real_estate_on= new Image();
   real_estate_on.src="images/nav_real_estate_on.gif";
   
   real_estate_off= new Image();
   real_estate_off.src="images/nav_real_estate_off.gif";


/***********************************************
* Image Change script- by Michael Bell
***********************************************/
function imageChange(imageID,imageName)
{
  document.images[imageID].src = eval(imageName + ".src");
}

function MyPopUpWin(url,width,height) {
var iMyWidth;
var iMyHeight;
//half the screen width minus half the new window width (plus 5 pixel borders).
iMyWidth = (window.screen.width/2) - (width + 10);
//half the screen height minus half the new window height (plus title and status bars).
iMyHeight = (window.screen.height/2) - (height + 50);
//Open the window.
var win = window.open(url,"Window","status=no,height="+height+",width="+width+",resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=yes,location=no,directories=no");
win.focus();
}
