//Navigation

var conBrowser=1;
var previousMenu = "none";
var previousSwitch = "none"
	
	// Nav Items
	var switch1on  = new Image();  switch1on.src  = 'Images/menus_on.jpg';
	var switch1off  = new Image();  switch1off.src  = 'Images/menus_off.jpg';
	var switch1Text = '';

	var switch2on  = new Image();  switch2on.src  = 'Images/recipes_on.jpg';
	var switch2off = new Image();  switch2off.src = 'Images/recipes_off.jpg';
	var switch2Text = '';

	var switch3on  = new Image();  switch3on.src  = 'Images/scrapBook_on.jpg';
	var switch3off  = new Image();  switch3off.src  = 'Images/scrapBook_off.jpg';
	var switch3Text = '';

	var switch4on  = new Image();  switch4on.src  = 'Images/store_on.jpg';
	var switch4off = new Image();  switch4off.src = 'Images/store_off.jpg';
	var switch4Text = '';
	
	var switch5on  = new Image();  switch5on.src  = 'Images/home_on.jpg';
	var switch5off = new Image();  switch5off.src = 'Images/home_off.jpg';
	var switch5Text = '';
	
	var switch6on  = new Image();  switch6on.src  = 'Images/orderNow_on.jpg';
	var switch6off = new Image();  switch6off.src = 'Images/orderNow_off.jpg';
	var switch6Text = '';
 

function HighLight(strNavItem){
	  if (conBrowser){
			imgNewNav = eval(strNavItem + "on");
			strNewText = eval(strNavItem + "Text");
			document[strNavItem].src = imgNewNav.src;
			window.status = strNewText;
  }
}

function UndoHighLight(strNavItem){
	  if (conBrowser){
			imgNewNav = eval(strNavItem + "off");
	document[strNavItem].src = imgNewNav.src;
			window.status = "";
  }
}

function resetStatus(){
	  if (conBrowser){
			window.status = "";
  }
}

function showStatus(strText){
	  if (conBrowser){
			window.status = strText;
  }
}
                               
							   
<!-- hide this script from non-javascript-enabled browsers

     // Pop Up Window
        function pop(URL)
        {
                 windowPop = window.open(URL,"popup", "width=650,height=600,toolbar=yes,menubar=no,status=no,scrollbars=yes,resizable=yes");
        }
        

// stop hiding -->							   
                
