
// load menu images
menu_home = new Image(103,56);
menu_home.src = "images/menu-home.png";
menu_home_sel = new Image(103,56);
menu_home_sel.src = "images/menu-home-sel.png";

menu_menu = new Image(103,56);
menu_menu.src = "images/menu-menu.png";
menu_menu_sel = new Image(103,56);
menu_menu_sel.src = "images/menu-menu-sel.png";

menu_catering = new Image(103,56);
menu_catering.src = "images/menu-catering.png";
menu_catering_sel = new Image(103,56);
menu_catering_sel.src = "images/menu-catering-sel.png";

menu_directions = new Image(103,56);
menu_directions.src = "images/menu-directions.png";
menu_directions_sel = new Image(103,56);
menu_directions_sel.src = "images/menu-directions-sel.png";

function copyright() {
  var lastmod = document.lastModified;
  document.write('<center>');
  document.write("<span class=\"footer\">&copy 2009 Pizza Station &nbsp;&nbsp;|&nbsp;&nbsp; Website Development: <a href=\"http://www.nouridatasystems.com\" target=\"NDS\">nds-websites</a> &nbsp;&nbsp;|&nbsp;&nbsp; Last Modified Date: ");
  if (lastmod == 0)
    {
      document.writeln("Unknown");
    }
  else
    {
      document.writeln(lastmod);
    }
  document.write('</span></center><br>');
}


function pagefooter() {
  document.writeln('<br>');
}


function menucat1() {
  document.writeln('<br>');
  document.writeln('<span width=550 class="menunav"><br>');
  document.writeln('<a href="#pizza"> Pizza </a> • <a href="#special-pizza">');
  document.writeln('Specialty Pizza </a> • <a href="#calzones"> Calzones & Stuffed Rolls </a> •');
  document.writeln('<a href="#wedges"> Wedges </a> <br> <a href="#pasta"> Pasta </a> • <a href="#entrees"> Entrees </a> •');
  document.writeln('<a href="#seafood">Seafood Specialties</a>  • <a href="#appetizers">Appetizers</a>  • <a href="#salads">Fresh Salads</a> •');
  document.writeln('<a href="#soups">Soups</a>  • <a href="#sides">Side Orders</a><br><br></span>');
}

function menucat2() {
  document.writeln('<br>');
  document.writeln('<span width=780 class="menunav"><br><a href="#appetizers">Appetizers</a> • <a href="#salads">Fresh Salads</a> •');
  document.writeln('<a href="#pasta"> Pasta </a> • <a href="#specialpasta"> Special Pastas </a> • <a href="#seafood">Seafood</a>  •');
  document.writeln('<a href="#poultry"> Poultry </a> • <a href="#veal"> Veal </a><br><br></span>');
}

function setwindowsize() {
  window.resizeTo(980,720);
}




//image swapping function:
function imageswap(image1, image2, comment) {
	image1.src = image2.src;
	window.status = comment;
	return true;
}  

function play(snd) {
	soundManager.stop(snd);
	soundManager.play(snd,1);
}