/* COOLjsMenu style + structure file */

var STYLE_0 =
{
    textClass:[ "l0_out", "l0_over" ],
    // Edit to adjust width and height
    // of top level menu items size:[height, width]
    size:[ 20, 80 ],
    itemoff:[ 0, "+previousItem" ],
    leveloff:[ "+parentItem+0px", 0 ],
    itemFilters:"progid:DXImageTransform.Microsoft.Fade(duration=0.5)"
};

var STYLE_1 = {
    levelFilters:[ "progid:DXImageTransform.Microsoft.Fade(duration=0.5) progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=0.25,wipestyle=1,motion=forward,duration=0.5)", "progid:DXImageTransform.Microsoft.Fade(duration=0.5) progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=0.25,wipestyle=1,motion=reverse,duration=0.5)" ],
    itemFilters:null,
    backgroundClass:[ "l1_bg_other", "l1_bg_other" ],
    // borderWidth:[left, top, right, bottom]
    borderWidth:[ 1, 0, 1, 0 ],
    color:
    {
        border:"#F2EEEE"
    },
    textClass:[ "l1_out", "l1_over" ],
    // Edit to adjust width and height
    // of sub level menu items size:[height, width]
    size:[ 19, 150 ],
    itemoff:[ "+previousItem", 0 ],
    ifN0:{
        valign:"bottom",
        size:[ 19, 150 ],
        backgroundClass:[ "l1_bg_0", "l1_bg_0" ]
    },
    ifN1:{
        backgroundClass:[ "l1_bg_1", "l1_bg_1" ]
    },
    ifLast:{
        valign:"top",
        size:[ 19, 150 ],
        // borders:[left, top, right, bottom]
        borders:[ 1, 0, 1, 0 ]
    }
};

// b.gif is a required blank image. Do not remove.
var MENU_ITEMS = [
    {style:[ STYLE_0, STYLE_1 ], blankImage:"images/b.gif" },
    {code:"Tours", url:"#",
        sub:[
            {},
			{code:"Itinerary Description", url:"itinerary.html"},
            {code:"7 Day Cape Tour", url:"7daytour.html"},
            {code:"8 Day Cape to PE Tour", url:"8daytour.html"},
			{code:"11 Day Cape to Cape Tour", url:"11daytour.html"},
			{code:"13 Day Cape to Cape Tour", url:"13daytour.html"} 
			
        ]
    },
    {code:"Bookings", url:"bookingform.html"},
    {code:"Photo Gallery", url:"photogallery.html"},
	{code:"About Us", url:"aboutus.html"},
	
    {code:"Terms", url:"#",
        sub:[
            {},
            {code:"Terms & Conditions", url:"terms.html"},
            {code:"Indemnity Form", url:"indemntiy.rtf", target:"_blank"}
        ]
    },
	
    {code:"Contact Us", url:"contactus.html"},
    {code:"Home", url:"index.html"},
];

var menu1 = new COOLjsMenuPRO("menu1", MENU_ITEMS);
menu1.initTop();


