if ( NS3 ) {

	Menu.prototype.borderstyle    = "shadow";
      Menu.prototype.bordercolor    = "#DE5173";
	Menu.prototype.bgcolor        = "#E1DFDF";
	
	var intmenu = new Menu( "servlayer", "serv" );
	intmenu.addMenuItem( "History of HK Designs", "http://hk-54.com/history.shtml" );
	intmenu.addMenuItem( "Tour The HK Plants", "http://hk-54.com/HKTour/" );
	intmenu.addMenuItem( "Tour The SW Plant", "http://hk-54.com/SWTour/" );
	intmenu.addMenuItem( "New HK & HK-Style Products", "http://hk-54.com/newproducts.shtml" );
	intmenu.addMenuItem( "HK-54 Message Board", "http://hk-54.com/forums/" );
	intmenu.print();

	var epimenu = new Menu( "deplayer", "dep" );
	epimenu.addMenuItem( "About Us", "http://hk-54.com/aboutus.shtml" );
	epimenu.addMenuItem( "Contact Us", "http://hk-54.com/contactus.shtml" );
	epimenu.addMenuItem( "Links Page", "http://hk-54.com/cgibin/links/ilink.cgi" );
	epimenu.addMenuItem( "HK-54 Message Board", "http://hk-54.com/forums/" );
	epimenu.addMenuItem( "Guestbook", "http://hk-54.com/cgibin/guestbook/ugb.cgi" );
	epimenu.addMenuItem( "Whats New Page", "http://hk-54.com/whatsnew.shtml" );
	epimenu.print();

	var medmenu = new Menu( "maplayer", "med" );
	medmenu.addMenuItem( "Sounds", "sounds.html" );
	medmenu.addMenuItem( "Images", "images.html" );
	medmenu.addMenuItem( "Scripts", "scripts.html" );
	medmenu.print();
}

