// Part 1 - Styles var STYLE = { border:0, // item's border width, pixels; zero means "none"; textClass:'menuText', 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:"b99542", // background color for the items; bgOVER:"#B6BDD2" // background color for the item // which is under mouse right now; }, css:{ ON:null, // CSS class for items; OVER:null // CSS class for item which is under mouse; } }; // Part 2 - Menu structure var MENU_ITEMS_HOME = [ {pos:"relative", itemoff:[0,0], leveloff:[26,0], style:STYLE, size:[26,42], blankImage: 'images/B.gif'}, {code:"", url:"home.htm", sub:[ {"itemoff":[16,0]}, {code:"Worth a thousand words",size:[21,180], "url":"home.htm#thousand"} ] } ]; var MENU_ITEMS_ABOUTUS = [ {pos:"relative", itemoff:[0,0], leveloff:[26,0], style:STYLE, size:[26,59], blankImage: 'images/B.gif'}, {code:"", url:"aboutus.htm",size:[26,59], format:{itemoff:[0,52]}, sub:[ {"itemoff":[18,0]}, {code:"Mission statement",size:[18,190], "url":"mission.htm"}, {code:"What is therapeutic riding?",size:[18,190], "url":"Whatis.htm"}, {code:"Life's Journey begins...",size:[18,190], "url":"ljbegins.htm"}, {code:"Board & staff",size:[18,189], "url":"boardandstaff.htm"}, {code:"Directions",size:[18,190], "url":"directions.htm"} ] } ]; var MENU_ITEMS_PROGRAMSERVICES = [ {pos:"relative", itemoff:[0,0], leveloff:[26,0], style:STYLE, size:[26,107], blankImage: 'images/B.gif'}, {code:"", url:"details.htm",size:[26,107], format:{itemoff:[0,70]}, sub:[ {"itemoff":[18,0]}, {code:"Program details",size:[18,147], "url":"details.htm#details"}, {code:"Additional services",size:[18,147], "url":"details.htm#additional"}, {code:"Program schedule",size:[18,147], "url":"schedules/LJprogramschedule.pdf"}, {code:"How to register",size:[18,147], "url":"details.htm#register"}, {code:"Registration forms",size:[18,147], "url":"details.htm#forms"} ] } ]; var MENU_ITEMS_VOLUNTEERING = [ {pos:"relative", itemoff:[0,0], leveloff:[26,0], style:STYLE, size:[26,89], blankImage: 'images/B.gif'}, {code:"", url:"volunteering.htm",size:[26,89], format:{itemoff:[0,119]}, sub:[ {"itemoff":[18,0]}, {code:"Welcome",size:[18,147], "url":"volunteering.htm#welcome"}, {code:"Opportunities",size:[18,147], "url":"volunteering.htm#opportunities"}, {code:"Forms & application",size:[18,147], "url":"volforms.htm"}, {code:"Volunteer schedule",size:[18,147], "url":"schedules/LJvolschedule.pdf"} ] } ]; var MENU_ITEMS_WHATSNEW = [ {pos:"relative", itemoff:[0,0], leveloff:[26,0], style:STYLE, size:[26,75], blankImage: 'images/B.gif'}, {code:"", url:"item2.html",size:[26,75], format:{itemoff:[0,96]}, sub:[ {"itemoff":[18,0]}, {code:"Calendar",size:[18,127], "url":"Calendar.htm"}, {code:"Newsletter",size:[18,127], "url":"newsletter/Newsletter.pdf"}, {code:"Acknowlegements",size:[18,127], "url":"Testimonials.htm"}, {code:"Links",size:[18,127], "url":"Links.htm"} ] } ]; var MENU_ITEMS_GIVING = [ {pos:"relative", itemoff:[0,0], leveloff:[26,0], style:STYLE, size:[26,54], blankImage: 'images/B.gif'}, {code:"", url:"giving.htm",size:[26,54], format:{itemoff:[0,83]}, sub:[ {"itemoff":[18,0]}, {code:"Donate now",size:[18,130], "url":"giving.htm#donate"}, {code:"Annual Fund",size:[18,130], "url":"giving.htm#annual"}, {code:"Corporate partnerships",size:[18,130], "url":"giving.htm#corporate"}, {code:"Challenge bids",size:[18,130], "url":"giving.htm#challenge"}, {code:"Gifts in honor",size:[18,130], "url":"giving.htm#gifts"}, {code:"Sponsor a rider",size:[18,130], "url":"giving.htm#Sponsorrd"}, {code:"Sponsor a horse",size:[18,130], "url":"giving.htm#Sponsorh"}, {code:"Wish list",size:[18,130], "url":"giving.htm#wishlist"}, {code:"Contributor Form",size:[18,130], "url":"forms/contributor form.pdf"} ] } ];