if (window.addEventListener)
{  
	window.addEventListener('load', sortBackground, false);
	window.addEventListener('resize', sortBackground, false);
}
else
{
	window.attachEvent('onload', sortBackground);
	window.attachEvent('onresize', sortBackground);
}
function sortBackground()
{
	contentOuter = document.getElementById('content_outer_container');
	contentOuter.style.backgroundPosition="center "+(0-(parseInt(contentOuter.offsetTop))+"px");
	menuOuter = document.getElementById('menu_container');
	menuOuter.style.backgroundPosition="center "+(0-(parseInt(menuOuter.offsetTop))+"px");
	crumbtrailOuter = document.getElementById('crumbtrail_container');
	crumbtrailOuter.style.backgroundPosition="center "+(0-(parseInt(crumbtrailOuter.offsetTop))+"px");
}
