// ------------------------------------------------------------------------
//
// 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, bookings, rates, 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 Coaches", "index.shtml");
	home.createMenu("Home: Sita Group", "http://www.sitacoaches.com.au/");


	about = createMenu("About Sita Coaches", "",
	'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("Company Profile", "about.shtml#profile");
	about.createMenu("Staff", "about.shtml#staff");
	about.createMenu("Privacy Policy", "privacy.shtml");
	
	
	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();

    
    
