// Initialize WebDDM
function initWebDDM ()
{
// Preload all the images we will be using...
//WebDDM_preloadImages('menus/mainmenu/arrowdown.gif',
//		'menus/mainmenu/arrowleft.gif');
	
// Set arrow HTML
//		var arrowDown = '<span style="position:relative;top:0;left:5;">'+
//		'<img src="menus/mainmenu/arrowdown.gif" style="border-style: none;" />' +
//		'</span>';
//	var arrowLeft = '<span style="position:relative;top:0;left:5;">'+
//		'<img src="menus/mainmenu/arrowleft.gif" style="border-style: none;" />' +
//		'</span>';
			
	// Begin base menu
	var menu = {
		'position':'relative',
		'top':0,
		'left':0,
		'width':290,
		'height':30,
		'expand_menu':'auto',

		// Begin array of items, level 0
		'items':{
			'top':0,
			'left':0,
			
			'background-item':{
				'width': 290, 'height': 26,
				'top':0, 'left':0,
				'class': 'container'
			},
			
			1:{
				'content':'<img src="/images/BE_Home.gif">',
				'content_rollover':'<a href="/"><img src="/images/BE_Home-over.gif" border="0"></a>',
				'cursor':'hand',
				'width':62, 'height':20, 'offsetLeft': 0, 'offsetTop': 0,
				'class':'mainmenu_off',
				'class_rollover':'mainmenu_rollover'
			},
			2:{
				'content':'<img src="/images/BE_NewsEvents.gif">',
				'content_rollover':'<a href="http://www.jtusa.com/"><img src="/images/BE_NewsEvents-over.gif" border="0"></a>',
				'cursor':'hand',
				'width':101, 'height':20, 'offsetLeft': 62,
				'class':'mainmenu_off',
				'class_menuopen':'mainmenu_rollover'
			},
			3:{
				'content':'<img src="/images/BE_AboutBE.gif">',
				'content_menuopen':'<img src="/images/BE_AboutBE-over.gif">',
				'cursor':'hand',
				'width':63, 'height':20, 'offsetLeft':101,
				'class':'mainmenu_off',
				'class_menuopen':'mainmenu_rollover',

				// Begin array of items
				'items':{
					'top':20,
					'left':0,

					'background-item':{
						'width': 155, 'height': 71,
						'top':1, 'left':0,
						'class': 'container'
					},					
					
					1:{
						'content':'The company',
						'content_rollover':'<a href="/?aboutus" class="mainmenu_rollover">The company</a>',
						'cursor':'hand',
						'width':150, 'height':20, 'offsetLeft':3, 'offsetTop':3,
						'class':'mainmenu_off',
						'class_rollover':'mainmenu_rollover'
					},
					2:{
						'content':'Download our catalog',
						'content_rollover':'<a href="http://www.jtusa.com/images/08JTSports.pdf" class="mainmenu_rollover">Download our catalog</a>',
						'cursor':'hand',
						'width':150, 'height':20, 'offsetTop':22,
						'class':'mainmenu_off',
						'class_rollover':'mainmenu_rollover'
					},
					3:{
						'content':'Join our team',
						'content_rollover':'<a href="http://www.jtsports.com/?career" class="mainmenu_rollover">Join our team</a>',	
						'cursor':'hand',
						'width':150, 'height':20, 'offsetTop':22,
						'class':'mainmenu_off',
						'class_rollover':'mainmenu_rollover'
					}
					//,
					//5:{
					//	'content':'Paintball 101',
					//	'content_rollover':'<a href="/pb101.asp" class="mainmenu_rollover">Paintball 101</a>',	
					//	'cursor':'hand',
					//	'width':150, 'height':20, 'offsetTop':22,
					//	'class':'mainmenu_off',
					//	'class_rollover':'mainmenu_rollover'
					//}
				}
				// End array of items
			},
			4:{
				'content':'<img src="/images/BE_Dealers.gif">',
            'content_rollover':'<a href="http://www.jtusa.com/?dealerlocate"><img src="/images/BE_Dealers-over.gif" border="0"></a>',
				'cursor':'hand',
				'width':64, 'height':20, 'offsetLeft':63,
				'class':'mainmenu_off',
				'class_menuopen':'mainmenu_rollover',
			}
		}
		// End array of items
	};
	// End base menu

	// Activate and build menu
	var WebDDM_mainmenu = new WebDDM('mainmenu', menu);
}
