
if(document.images)
	{
	
	home = new Image();
	home.src = "images/buttons/btn_home.jpg";
	homeover = new Image();
	homeover.src = "images/buttons/home_over.jpg";
	
	menu = new Image();
	menu.src = "images/buttons/btn_menu.jpg";
	menuover = new Image();
	menuover.src = "images/buttons/menu_over.jpg";

	steaksendoff = new Image();
	steaksendoff.src = "images/buttons/btn_steaksendoff.jpg";
	steaksendoffover = new Image();
	steaksendoffover.src = "images/buttons/steaksendoff_over.jpg";

	pizzaparties = new Image();
	pizzaparties.src = "images/buttons/btn_pizzaparties.jpg";
	pizzapartiesover = new Image();
	pizzapartiesover.src = "images/buttons/pizzaparties_over.jpg";

	foodvalues = new Image();
	foodvalues.src = "images/buttons/btn_foodvalues.jpg";
	foodvaluesover = new Image();
	foodvaluesover.src = "images/buttons/foodvalues_over.jpg";

	promotions = new Image();
	promotions.src = "images/buttons/btn_promotions.jpg";
	promotionsover = new Image();
	promotionsover.src = "images/buttons/promotions_over.jpg";

	contactus = new Image();
	contactus.src = "images/buttons/btn_locations_contactus.jpg";
	contactusover = new Image();
	contactusover.src = "images/buttons/btn_locations_contactus_over.jpg";
	
	}

var browserName=navigator.appName; 

function mouseover(imgName) 
{
 if (document.images) 
	{
	imgOn=eval(imgName + "over.src"); 
	document[imgName].src= imgOn;
	 } 
}

function mouseout(imgName)
{
 if (document.images)
 {
 imgOff=eval(imgName + ".src"); 
 document[imgName].src= imgOff;
 }
}

function launch_pop_window(WindowName, WindowTitle, w, h)
{

var width = screen.availWidth;
var height = screen.availHeight;

WizardWindow = "toolbar=no,"+
                "location=no,"+
                "directories=no,"+
                "resizable=yes,"+
                "menubar=no,"+
                //"scrollbars=auto,"+
                "scrollbars=yes,"+
                "status=no,"

window.open(WindowName,WindowTitle,'width=' + w +',height=' + h + ', left=' + ((width - w - 10) * .5) + ', top=' + ((height - h - 30) * .5) + ', '+WizardWindow);

}

function launch_pop_window_max(WindowName, WindowTitle)
{

var width = screen.availWidth;
var height = screen.availHeight;

WizardWindow = "toolbar=no,"+
                "location=no,"+
                "directories=no,"+
                "resizable=yes,"+
                "menubar=no,"+
                //"scrollbars=auto,"+
                "scrollbars=yes,"+
                "status=no,"

window.open(WindowName,WindowTitle,'width=' + width +', height=' + height + ', left= 0 , top= 0 , '+WizardWindow);

}