function fnGetOffsetPos()
{
	// Returns the image element in the collection.
	var oImg=document.getElementById("Bck_img");
	var lpImg=oImg.offsetLeft;
	//var lPosElem=(document.body.clientWidth-750)/2;
	return(lpImg);
}

// Initialize WebDDM
function initWebDDM ()
{
	var lPos=fnGetOffsetPos();
	// Begin base menu
	var menu = {
		'position':'relative',
		'top':0,
		'left':lPos,
		'width':750,
		'height':28,
		'expand_menu':'auto',

		// Begin array of items, level 0
		'items':{
			'top':0,
			'left':0,
			'width':750,
			'height':28,
			// Begin item 1
			// This is sort of the container for all of the rest of the items
			1:{
				'content':'&nbsp;',
				'isContainerItem':true,
				'width':750, 'height':28, 'left': 0, 'top': 0,
				'class':'topcontainer'
			},
			// End item 1
			// Begin item 2
			2:{
				'content':'Home',
				'url':'default.html', 'cursor':'hand',
				'width':80, 'height':25, 'left':1, 'top':1,
				'class':'msdn_off',
				'class_rollover':'msdn_rollover'
			},
			// End item 2
			// Begin item 3
			3:{
				'content':'About Us &nbsp; <img src="../menus/msdn/arrowdown.gif" />',
				'width':90, 'height':25, 'left':82, 'top':1,
				'url':'about.html',
				'cursor':'hand',
				'class':'msdn_off',
				'class_menuopen':'msdn_rollover',
				// Begin array of items, item 3
				'items':{
					'top':26,
					'left':82,
					'width':120,
					'height':159,
					// Begin item 3-1
					// This is the container for the rest of the items
					1:{
						'content':'&nbsp;',
						'width':120, 'height':46, 'left':0, 'top': 2,
						'class':'container'
					},
					// End item 3-1
					// Begin item 3-2
					2:{
						'content':'Our Values',
						'width':114, 'height':20, 'left':3, 'top': 5,
						'url':'values.html',
						'class':'msdn_off_submenu',
						'class_rollover':'msdn_rollover_submenu'
					},
					// End item 3-3
					// Begin item 3-4
					3:{
						'content':'Affiliate Companies',
						'width':114, 'height':20, 'left':3, 'top': 25,
						'url':'affiliates.html',
						'class':'msdn_off_submenu',
						'class_rollover':'msdn_rollover_submenu'
					}
					// End item 3-4
				}
				// End array of items, item 3
			},
			// End item 3
			// Begin item 4
			4:{
				'content':'Services &nbsp; <img src="../menus/msdn/arrowdown.gif" />',
				'width':90, 'height':25, 'left':173, 'top':1,
				'cursor':'hand',
				'class':'msdn_off',
				'class_menuopen':'msdn_rollover',
				// Begin array of items, item 4
				'items':{
					'top':26,
					'left':173,
					'width':146,
					'height':110,
					// Begin item 4-1
					// This is a container for the rest of the items
					1:{
						'content':'&nbsp;',
						'width':146, 'height':66, 'left':0, 'top':2,
						'class':'container'
					},
					// End item 4-1
					// Begin item 4-2
					2:{
						'content':'Project Finance',
						'url':'project.html',
						'width':140, 'height':20, 'left':3, 'top':5,
						'class':'msdn_off_submenu',
						'class_rollover':'msdn_rollover_submenu'
					},
					// End item 4-2
					// Begin item 4-3
					3:{
						'content':'Commercial Financing',
						'width':140, 'height':20, 'left':3, 'top':25,
						'url':'brokerage.html',
						'class':'msdn_off_submenu',
						'class_rollover':'msdn_rollover_submenu'
					},
					// End item 4-3
					// Begin item 4-4
					4:{
						'content':'Trade Finance',
						'url':'services.html',
						'width':140, 'height':20, 'left':3, 'top':45,
						'class':'msdn_off_submenu',
						'class_rollover':'msdn_rollover_submenu'
					}
					// End item 4-4
				}
				// End array of items, item 4
			},
			// End item 4
			// Begin item 5
			5:{
				'content':'Industries Served',
				'width':140, 'height':25, 'left':264, 'top':1,
				'url':'industry.html',
				'cursor':'hand',
				'class':'msdn_off',
				'class_rollover':'msdn_rollover'
			},
			// End item 5
			// Begin item 6
			6:{
				'content':'Contact Us',
				'width':110, 'height':25, 'left':405, 'top':1,
				'url':'contact.html',
				'cursor':'hand',
				'class':'msdn_off',
				'class_rollover':'msdn_rollover'
			},
			// End item 6
			// Begin item 7
			7:{
				'content':'',
				'width':375, 'height':25, 'left':516, 'top':1,
				'class':'msdn_off'
			}
			// End item 7
		}
		// End array of items, level 0
	};
	// End base menu
	// Activate and build menu
	var msdnMenu = new WebDDM('MenuContainer', menu);
}
