//keywords
var code="code";
var url="url";
var sub="sub";

//styles
//var color = {"border":"#666666", "shadow":"#DBD8D1", "bgON":"white","bgOVER":"#B6BDD2"};
//var css = {"ON":"clsCMOn", "OVER":"clsCMOver"};
//var STYLE = {"border":0, "shadow":0, "color":color, "css":css};

var STYLE = {
    border:0,              // item's border width, pixels; zero means "none";
    shadow:0,              // item's shadow size, pixels; zero means "none"
    color:{
        border:"#666666",  // color of the item border, if any;
        shadow:"#DBD8D1",  // color of the item shadow, if any;
        bgON:"#00197B",      // background color for the items;
        bgOVER:"#00197B"   // background color for the item
                           // which is under mouse right now;
    },
    css:{
        ON:"clsCMOn",           // CSS class for items;
        OVER:"clsCMOver"          // CSS class  for item which is under mouse;
    }
};

var STYLESUB = {
    border:0,              // item's border width, pixels; zero means "none";
    shadow:0,              // item's shadow size, pixels; zero means "none"
    color:{
        border:"#666666",  // color of the item border, if any;
        shadow:"#DBD8D1",  // color of the item shadow, if any;
        bgON:"#00197B",      // background color for the items;
        bgOVER:"#00197B"   // background color for the item
                           // which is under mouse right now;
    },
    css:{
        ON:"clsCMOnSub",           // CSS class for items;
        OVER:"clsCMOverSub"          // CSS class  for item which is under mouse;
    }
};

//items and formats
var MENU_ITEMS =
[
	{pos:'relative', itemoff:[0,107], leveloff:[30,0], style:STYLE, size:[30,108]},
	{code:"Home", url:"index.php"},
	{code:"The Boat", url:"boat.php"},
	{code:"Your Trip", 
	sub:[
            {itemoff:[30,0], leveloff:[30,0], size:[30,150], style:STYLESUB},
            {code:"Photos", url:"yourtrip.php"},
            {code:"Testimonials", url:"testimonials.php"}
        ]
	},
	{code:"Galleries", 
	sub:[
            {itemoff:[30,0], leveloff:[30,0], size:[30,150], style:STYLESUB},
            {code:"The Boat", url:"gallery.php?gid=p_boat"},
		    {code:"The Lifestyle", url:"gallery.php?gid=p_lifestyle"},
		    {code:"The Waves", url:"gallery.php?gid=p_waves"}
        ]
	},
    {code:"Bookings", url:"booking.php"},
	{code:"Travel Info", 
	sub:[
            {itemoff:[30,0], leveloff:[30,0], size:[30,150], style:STYLESUB},
            {code:"Passport Form", url:"ppform.php"},
		    {code:"General Info", url:"travel_indo.php"},
		    {code:"Airticket", url:"airticket.php"}
        ]
	},
	{code:"Contact", url:"contact.php"}
];
