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


	about = createMenu("About Sunbus", "",
	'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("About Melbourne", "about_melb.shtml");
	about.createMenu("About Avalon", "about_avalon.shtml");
	about.createMenu("Privacy Policy", "http://www.sitacoaches.com.au/sitacoaches/privacy.shtml");
	
	
	
	rates = createMenu("Rates", "",
	'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'); 
	rates.createMenu("Melbourne Rates", "rates_melb.shtml");
	rates.createMenu("Avalon Rates", "rates_avalon.shtml");
	
	bookings = createMenu("Bookings", "",
	'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'); 
	bookings.createMenu("Melbourne Bookings", "https://www.pixeltech.com.au/~sitacoach/sunbus/book_melb.shtml");
	bookings.createMenu("Avalon Bookings", "https://www.pixeltech.com.au/~sitacoach/sunbus/book_avalon.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();

    
    

