// Initialize WebDDM
function initWebDDM ()
{
	// Begin base menu
	var menu = {
		'position':'relative', // Fit menu inline with other HTML
		'top':0, // Offset 0 from default position
		'left':0, // Offset 0 from default position
		'width':90, // Gives some space around the menu, so other elements aren't in this space
		'height':21, // Gives some space around the menu, so other elements aren't in this space
		'expand_menu':'auto', // Automatically show the menu

		// Begin array of items, level 0
		'items':{
			'top':0,
			'left':0,
			'width':110,
			'height':21,
			// Begin item 1
			1:{
				'content':'Franchising',
				'content_menuopen':'Franchising',
				'cursor':'hand',
				'width':110, 'height':22, 'left':0, 'top':0,
				'class':'menu',
				'items':{
					'top':0,
					'left':100,
					'width':110,
					'height':173,
					// Begin item 3-1
					1:{
						'content':'Structure',
						'url':'franchising-structure.php',
						'cursor':'hand',
						'width':110, 'height':22, 'left':0, 'top':0,
						'class':'mainmenu_off',
						'css':'background-image:url(menus/other/bg.gif);background-position:0px 0px; font-size:11px;',
						'css_rollover':'background-image:url(menus/other/bg_rollover.gif)'
					},
					// End item 3-1
					// Begin item 3-2
					2:{
						'content':'FAQs',
						'url':'franchising-faqs.php',
						'cursor':'hand',
						'width':110, 'height':22, 'left':0, 'top':21,
						'class':'mainmenu_off',
						'css':'background-image:url(menus/other/bg.gif);background-position:0px -22px; font-size:11px;',
						'css_rollover':'background-image:url(menus/other/bg_rollover.gif)'
					},
					// End item 3-2
					// Begin item 3-3
					3:{
						'content':'Steps',
						'url':'franchising-steps.php',
						'cursor':'hand',
						'width':110, 'height':22, 'left':0, 'top':42,
						'class':'mainmenu_off',
						'css':'background-image:url(menus/other/bg.gif);background-position:0px -44px; font-size:11px;',
						'css_rollover':'background-image:url(menus/other/bg_rollover.gif)'
					},
					// End item 1-3
					// Begin item 1-4
					4:{
						'content':'Application',
						'url':'franchising-application.html',
						'cursor':'hand',
						'width':110, 'height':22, 'left':0, 'top':63,
						'class':'mainmenu_off',
						'css':'background-image:url(menus/other/bg.gif);background-position:0px -66px; font-size:11px;',
						'css_rollover':'background-image:url(menus/other/bg_rollover.gif)'
					},
					// End item 1-4
					// Begin item 1-5
					5:{
						'content':'Store Design',
						'url':'franchising-design.php',
						'cursor':'hand',
						'width':110, 'height':22, 'left':0, 'top':84,
						'class':'mainmenu_off',
						'css':'background-image:url(menus/other/bg.gif);background-position:0px -88px; font-size:11px;',
						'css_rollover':'background-image:url(menus/other/bg_rollover.gif)'
					},
					// End item 1-5
					// Begin item 1-6
					6:{
						'content':'Your Initial Investment',
						'url':'franchising-investment.html',
						'cursor':'hand',
						'width':110, 'height':22, 'left':0, 'top':105,
						'class':'mainmenu_off',
						'css':'background-image:url(menus/other/bg.gif);background-position:0px -102px; font-size:11px;',
						'css_rollover':'background-image:url(menus/other/bg_rollover.gif)'
					} //,
/*7:{
	'content':' ',
	'url':'franchising-seminar.php',
	'cursor':'hand',
	'width':110, 'height':22, 'left':0, 'top':131,
	'class':'mainmenu_off',
	'css':'background-image:url(menus/other/bg.gif);background-position:0px -102px; font-size:11px;',
	'css_rollover':'background-image:url(menus/other/bg_rollover.gif)'
}*/
					// End item 1-5
				}
				// End array of items, item 3

			}
			// End item 1
		}
		// End array of items, level 0
	};
	// End base menu

	// Activate and build menu
	WebDDM_activateMenu('menu', menu);
}
