// ------------------------------------------------------------------------
//
// All code is copyright © Pixeltech Design Pty Ltd
//
//    URL: www.pixeltech.com
//
// The use of any part of this code without express written permission
// contravenes international copyright law.
// 
// Version: 1.03  Sita Coaches Pty Ltd - Menu Script //
// ------------------------------------------------------------------------

var home, about, routes, vehicles;
	
	home = createMenu("Home", "",
	'font=Arial,fontSize=8,backgroundColor=#515151,textColor=#ffffff,' +
	'borderStyle=inset,borderColor=#000000,borderWidth=1,fixed=false,' +
	'highlightTextColor=#282828,highlightColor=#F99E32,showHeading=false,' +
	'headingColor=#ffffff,headingFont=Arial,headingFontSize=8,' +
	'headingAlign=center,leftMargin=3,rightMargin=3, xPos=0, yPos=0,' +
	'showHighlight=true, width=120px, lineHeight=18px'); 
    	home.createMenu("Home: Sita Buslines", "index.shtml");
	home.createMenu("Home: Sita Group", "http://www.sitacoaches.com.au/");

	about = createMenu("About", "",
	'font=Arial,fontSize=8,backgroundColor=#515151,textColor=#ffffff,' +
	'borderStyle=inset,borderColor=#000000,borderWidth=1,fixed=false,' +
	'highlightTextColor=#282828,highlightColor=#F99E32,showHeading=false,' +
	'headingColor=#ffffff,headingFont=Arial,headingFontSize=8,' +
	'headingAlign=center,leftMargin=3,rightMargin=3, xPos=0, yPos=0,' +
	'showHighlight=true, width=120px, lineHeight=18px'); 
    	about.createMenu("Privacy Policy", "privacy.shtml");
	
	
	routes = createMenu("Timetables & Route Maps", "",
	'font=Arial,fontSize=8,backgroundColor=#515151,textColor=#ffffff,' +
	'borderStyle=inset,borderColor=#000000,borderWidth=1,fixed=false,' +
	'highlightTextColor=#282828,highlightColor=#F99E32,showHeading=false,' +
	'headingColor=#ffffff,headingFont=Arial,headingFontSize=8,' +
	'headingAlign=center,leftMargin=3,rightMargin=3, xPos=0, yPos=0,' +
	'showHighlight=true, width=120px, lineHeight=18px'); 
    	routes.createMenu("Bus Route 400", "http://www.metlinkmelbourne.com.au/route/view/1178");
    	routes.createMenu("Bus Route 401", "http://www.metlinkmelbourne.com.au/route/view/1657");
    	routes.createMenu("Bus Route 402", "http://www.metlinkmelbourne.com.au/route/view/783");
	routes.createMenu("Bus Route 404", "http://www.metlinkmelbourne.com.au/route/view/784");
    	routes.createMenu("Bus Route 431", "http://www.metlinkmelbourne.com.au/route/view/1664");
	routes.createMenu("Bus Route 432", "http://www.metlinkmelbourne.com.au/route/view/1665");
	routes.createMenu("Bus Route 451", "http://www.metlinkmelbourne.com.au/route/view/815");
    	routes.createMenu("Bus Route 454", "http://www.metlinkmelbourne.com.au/route/view/816");
	routes.createMenu("Bus Route 456", "http://www.metlinkmelbourne.com.au/route/view/817");
	routes.createMenu("Bus Route 457", "http://www.metlinkmelbourne.com.au/route/view/818");
    	routes.createMenu("Bus Route 458", "http://www.metlinkmelbourne.com.au/route/view/819");
	routes.createMenu("Bus Route 459", "http://www.metlinkmelbourne.com.au/route/view/820");
	routes.createMenu("Bus Route 471", "http://www.metlinkmelbourne.com.au/route/view/825");
	routes.createMenu("Bus Route 472", "http://www.metlinkmelbourne.com.au/route/view/1666");	
	
	vehicles = createMenu("Our Vehicles", "",
	'font=Arial,fontSize=8,backgroundColor=#515151,textColor=#ffffff,' +
	'borderStyle=inset,borderColor=#000000,borderWidth=1,fixed=false,' +
	'highlightTextColor=#282828,highlightColor=#F99E32,showHeading=false,' +
	'headingColor=#ffffff,headingFont=Arial,headingFontSize=8,' +
	'headingAlign=center,leftMargin=3,rightMargin=3, xPos=0, yPos=0,' +
	'showHighlight=true, width=120px, lineHeight=18px'); 
    	vehicles.createMenu("Fleet", "vehicles.shtml#fleet");
	vehicles.createMenu("Safety &amp; Quality", "vehicles.shtml#safety");

	contact = createMenu("Contact Us", "",
	'font=Arial,fontSize=8,backgroundColor=#515151,textColor=#ffffff,' +
	'borderStyle=inset,borderColor=#000000,borderWidth=1,fixed=false,' +
	'highlightTextColor=#282828,highlightColor=#F99E32,showHeading=false,' +
	'headingColor=#ffffff,headingFont=Arial,headingFontSize=8,' +
	'headingAlign=center,leftMargin=3,rightMargin=3, xPos=0, yPos=0,' +
	'showHighlight=true, width=120px, lineHeight=18px'); 
    	contact.createMenu("Contact Us", "contact.shtml");
	contact.createMenu("Site Map", "sitemap.shtml");
	
 
    genMenus();

    
    
