// 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 = [
    ['HOME', '/'],
    ['THE DOG EXPERT', null, null,
		['WEEKLY TIP', "/thedogexpert", null],
		['DOG TRAINING', "/thedogexpert/dogtraining", null],
		['MEDIA INTERVIEWS', "/thedogexpert/mediainterviews", null],
		['BOOK', "/thedogexpert/book", null],
		['SPEAKER', "/thedogexpert/speaker", null],
    ],
    ['GET THE BOOK', "/thebook"],
   // ['THE BOOK PARTY', "/thebookparty"],
    ['MARKETPLACE', "/fetchabiz/marketplace"],
    ['VIDEO', "/tv/tv.aspx"],
    ['AUDIO', "/audio.aspx"],
    ['NEWS', null, null,
		['FEATURED ARTICLES', "/featuredarticles.aspx", null],
		['ARTICLE ARCHIVE', "/archivearticle.aspx", null],		
        ['FEATURED PRESS', "/press.aspx", null],
    ],
    ['EVENTS', null, null,
		//['THE BOOK PARTY', "/thebookparty", null],
		['LEASHES & LOVERS EVENTS', "/events.aspx", null],
		['EVENTS IN YOUR AREA', "/eventsinarea.aspx", null],
		['POST MY EVENT', "/postmyeventstart.aspx", null],
		['EVENT PHOTOS', "/photoarchive.aspx", null],
        ['CHARITY', "/charity.aspx", null],
		['TRAVEL WITH YOUR PET', "javascript:window.open('http://www.sherpapetgroup.com/gob_leashesandlovers')", null],
	],
	['BREEDS', "/breed/Breed_Search.aspx"],
	//['PRESS', null, null,
		//['FEATURED PRESS', "/press.aspx", null],
		//['ABOUT US', "/aboutus.aspx", null],
		//['FOUNDER INFO', "/founder.aspx", null],
		//['CHARITY', "/charity.aspx", null],
	//],
	['ADVERTISE', null, null,
		['BANNER ADS', "/bannerads.aspx", null],
		['NEWSLETTER', "/newsletterads.aspx", null],
		['MARKETPLACE', "/fetchabiz/marketplace", null],
		['EVENT SPONSORSHIP', "/eventsponsorship.aspx", null],
		['LEASHES AND LOVERS TV', "/tv/tvads.aspx", null],

	],	
];

