/*
  --- menu items --- 
  note that this structure has changed its format since previous version.
  additional third parameter is added for item scope settings.
  Now this structure is compatible with Tigra Menu GOLD.
  Format description can be found in product documentation.
*/
var MENU_ITEMS = [
	['HOME', 'default.aspx'],
	['BUSH HOG TOUGH', '', null,
	    ['BUSH HOG PERFORMANCE','ContentPage.aspx?ID=15'],
	    ['GREAT PERFORMANCES','GreatPerformances.aspx'],
	    ['APPAREL','contentpage.aspx?id=30'],
	    ['RECENT PUBLICITY','contentpage.aspx?id=121']
	],
	['PRODUCT INDEX', '', null,
	    ['BUSH HOG PRODUCTS','ContentPage.aspx?ID=11'],
	    ['GREAT BEND PRODUCTS','ContentPage.aspx?ID=26']
	],
	['SAFETY', 'ContentPage.aspx?ID=16', null,
	],
	['FINANCING', 'ContentPage.aspx?ID=12', null,
	],
	['MANUALS', 'ContentPage.aspx?ID=13', null,
	],
	['PARTS', '', null,
	    ['PUBLIC',"javascript:nw('http://www.4emweb.com/verify.asp?login=bhguest&amp;password=bhguest')"],
	    ['DEALERS',"javascript:nw('http://www.bushhogdealer.com')"]
	],
	['CONTACT US', 'ContentPage.aspx?ID=21', null,
	],
	['DEALER SUPPORT', '', null,
	    ['DEALER WEBSITE',"javascript:nw('http://www.bushhogdealer.com/')"],
	    ['PARTS',"javascript:nw('http://www.bushhogdealer.com')"],
	    ['AD MATERIALS','ContentPage.aspx?ID=14'],
	    ['REQUEST LITERATURE','LitRequestForm.aspx']
	],
];


function nw(url, name) 
{
    window.open(url,(name ? name : '_blank'));
}

