
	window.onload = function() {
		theWidthCP = document.getElementById("clickPathBC").offsetWidth;
		if (document.getElementById("shoppingCartBC")) {
			theWidthSC = document.getElementById("shoppingCartBC").offsetWidth;
		} else {
			theWidthSC = 0;
		}
		totalWidth = theWidthCP + 168 + theWidthSC;
		marginLeft = parseInt((714-totalWidth)/2);
		try {
			document.getElementById("searchContainer").setAttribute("style","margin-left:"+marginLeft.toString()+"px");
		} catch(err) {
			// No Action
		}
	}; 

