// Hack til resize af top bar/menu, michael@bellcom.dk

function resizeTopBar() {
	var width = document.body.offsetWidth;

	if (!document.getElementById('frontpage-links')) // ingen flash på forsiden, så vi trækker lidt mindre fra.
	{
		var menuObj = document.getElementById("pagehead");
		if (menuObj) {
			menuObj.style.width = (width - 240) + "px";
		}
	} 
	else {
	       var menuObj = document.getElementById("pagehead");
	        if (menuObj) {
	                menuObj.style.width = (width - 460 - 9) + "px"; // klient width - 460 (left bar width) - 10 (ca. scrollbar width)
	        }					
	}
}

resizeTopBar(); // onload

//document.onload = function() {
//	alert("abcd");
//	resizeTopBar();
//}

window.onresize = function() {
	//alert("abcd");
	resizeTopBar();
}
