// items structure // each item is the array of one or more properties: // [text, link, settings, subitems ...] // use the builder to export errors free structure if you experience problems with the syntax var MENU_ITEMS = [ ['WILLKOMMEN','default.aspx?ID=93',null, ['Geschichte','default.aspx?ID=91',null], ['Prospekt','default.aspx?ID=103',null], ],['GASTHAUS','default.aspx?ID=71',null, ['Ambiente','default.aspx?ID=40',null], ['Speisekarten','default.aspx?ID=16',null], ['Weihnachtfeiern','default.aspx?ID=89',null], ['Silvester','default.aspx?ID=90',null], ['Gruppen','default.aspx?ID=44',null], ['Gutscheine','default.aspx?ID=43',null], ],['HOCHZEITEN','default.aspx?ID=46',null, ['Standesamt & Kirche','default.aspx?ID=101',null], ['Arrangements','default.aspx?ID=48',null], ['Menüs & Buffets','default.aspx?ID=49',null], ['Impressionen','javascript:openSlideshow(81,0,1176,true,true,0,true,true)',null], ['Service von A-Z','default.aspx?ID=47',null], ['Hochzeitsanfrage','default.aspx?ID=51',null], ],['CATERING','default.aspx?ID=95',null, ['Hochzeiten','default.aspx?ID=54',null], ['Abiturbälle','default.aspx?ID=55',null], ['Firmencatering','default.aspx?ID=56',null], ['Partyservice','default.aspx?ID=57',null], ],['VERANSTALTUNGEN','default.aspx?ID=59&Action=events_strandcafe',null, ['Strandcafé','default.aspx?ID=94&Action=events_strandcafe',null], ['Stadt Lübben','default.aspx?ID=60&Action=events_luebben',null], ],['SPREEWALD','default.aspx?ID=80',null, ['Lübben','default.aspx?ID=82',null], ['Freizeit','default.aspx?ID=83',null], ], /* ['Menu Compatibility', null, null, ['Supported Browsers', null, null, ['Win32 Browsers', null, null, ['Internet Explorer 5+'], ['Netscape 6.0+'], ['Mozilla 0.9+'], ['AOL 5+'], ['Opera 5+'], ['Safari 3+'] // there must be no comma after the last element ], ['Mac OS Browsers', null, null, ['Internet Explorer 5+'], ['Netscape 6.0+'], ['Mozilla 0.9+'], ['AOL 5+'], ['Safari 1.0+'] ], ['KDE (Linux, FreeBSD)', null, null, ['Netscape 6.0+'], ['Mozilla 0.9+'] ] ], // this is how custom javascript code can be called from the item // note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t' ['Unsupported Browsers', 'javascript:alert(\'hello world\')', null, ['Internet Explorer 4.x'], ['Netscape 4.x'] ], ['Report test results', 'http://www.softcomplex.com/support.html'], ], ['Docs & Info', null, null, // this is how item scope settings are defined ['Product Page', 'http://www.softcomplex.com/products/tigra_menu/', {'tw':'_blank'}], // this is how multiple item scope settings are defined ['Welcome Page', '../ReadMeFirst.html', {'tw':'_top', 'tt':'Welcome Page', 'sb':'Test Status Bar Message'}], ['Documentation', 'http://www.softcomplex.com/products/tigra_menu/docs/'], ['Forums', 'http://www.softcomplex.com/forum/forumdisplay.php?fid=29'], ['TM Comparison Table', 'http://www.softcomplex.com/products/tigra_menu/docs/compare_menus.html'], ['Menu Builder', '../_builder/index.html'], ], ['Product Demos', null, null, ['Traditional Blue', '../demo1/index.html'], ['White Steps', '../demo2/index.html'], ['Inner HTML', '../demo3/index.html'], ['All Together', '../demo4/index.html'], ['Frames Targeting', '../demo5/index.html'], ['Accessing IDs', '../demo6/index.html'] ], ['Contact', 'http://www.softcomplex.com/support.html'] */ ];