// Initialize WebDDM
function initWebDDM ()
{
	// Begin base menu
	var menu = {
		'position':'relative',
		'top':0,
		'left':10,
		'width':700,
		'height':30,
		'expand_menu':'auto',

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

			// Background item
			'background-item':{
				'width':690, 'height':26, 'left':0, 'top':0,
				'class':'container'
			},

			1:{
				'content':'<a href="index.htm">Home</a>',
				'cursor':'hand',
				'width':150, 'height':20, 'offsetLeft':3, 'offsetTop':3,
				'class':'msdn_off',
				'class_rollover':'msdn_rollover'
			},
			2:{
				'content':'Services <img src="menus/msdn/arrowdown.gif" />',
				'width':150, 'height':20, 'offsetLeft':160, 'offsetTop':0,
				'class':'msdn_off',
				'class_menuopen':'msdn_rollover',
				'closeDelay':500,

				'items':{
					'top':20,
					'left':0,
			
        			/* clipTrans configuration */
        			'clipTrans':{
                			'duration':50, // Time (in milliseconds) it takes to complete the transition
                			'frames':5, // The number of frames in the transition animation
                			'transitionIn':'north-to-south', // Name of the transition to use
                			'transitionOut':'south-to-north' // Name of the transition to use
        			},
		
					// Background item
					'background-item':{
						'width':150, 'height':93, 'left':0, 'top':2,
						'class':'container'
					},

					1:{
						'content':'<a href="teeth_gears_splines.htm">Teeth, Gears & Splines</a>',
						'cursor':'hand',
						'width':144, 'height':20, 'offsetLeft':3, 'offsetTop':3,
						'class':'msdn_off',
						'class_rollover':'msdn_rollover'
					},
					2:{
						'content':'<a href="turning.htm">Turning</a>',
						'cursor':'hand',
						'width':144, 'height':20, 'offsetLeft':0, 'offsetTop':22,
						'class':'msdn_off',
						'class_rollover':'msdn_rollover'
					},
					3:{
						'content':'<a href="grinding_honing_polishing.htm">Grinding, Honing & Polishing</a>',
						'cursor':'hand',
						'width':144, 'height':20, 'offsetLeft':0, 'offsetTop':22,
						'class':'msdn_off',
						'class_rollover':'msdn_rollover'
					},
                                        4:{
                                                'content':'<a href="milling_boring_drilling.htm">Milling, Boring & Drilling</a>',
                                                'cursor':'hand',
                                                'width':144, 'height':20, 'offsetLeft':0, 'offsetTop':22,
                                                'class':'msdn_off',
                                                'class_rollover':'msdn_rollover'
                                        }

				}
			},
                        3:{
                                'content':'Request for Quote <img src="menus/msdn/arrowdown.gif" />',
                                'width':150, 'height':20, 'offsetLeft':160, 'offsetTop':0,
                                'class':'msdn_off',
                                'class_menuopen':'msdn_rollover',
				'closeDelay':500,

                                'items':{
                                        'top':20,
                                        'left':0,

                                /* clipTrans configuration */
                                'clipTrans':{
                                        'duration':50, // Time (in milliseconds) it takes to complete the transition
                                        'frames':5, // The number of frames in the transition animation
                                        'transitionIn':'north-to-south', // Name of the transition to use
                                        'transitionOut':'south-to-north' // Name of the transition to use
                                },

                                        // Background item
                                        'background-item':{
                                                'width':150, 'height':27, 'left':0, 'top':2,
                                                'class':'container'
                                        },

                                        1:{
                                                'content':'<a href="requestquote.htm">Request Form</a>',
                                                'cursor':'hand',
                                                'width':144, 'height':20, 'offsetLeft':3, 'offsetTop':3,
                                                'class':'msdn_off',
                                                'class_rollover':'msdn_rollover'
                                        }
				}
			},
                        4:{
				'content':'<a href="aboutus.htm">About Us</a>',
				'cursor':'hand',
				'width':150, 'height':20, 'offsetLeft':160, 'offsetTop':0,
				'class':'msdn_off',
				'class_rollover':'msdn_rollover'
			}
		}
	};
	// End base menu

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

