var ieLoopCount = 0;
function positionTopMenu() 
{
		
		setFixedWidths();
		//alert("running postion function");	
		var liveDataBoxHeight = 23;
		var topMenuHeight = 28;
		var bannerHeight = document.getElementById('banner').offsetHeight;
		var imageHeight = document.getElementById('logo').offsetHeight;
		//alert("image height is " + imageHeight + " and banner height is " + bannerHeight);
		var usableWidth = document.body.scrollWidth;
		//alert("scroll width is " + usableWidth);
		if (usableWidth > 800)
		{

			var neededMargin = bannerHeight - liveDataBoxHeight - topMenuHeight - 14;
			/*if (neededMargin < 10) {
			neededMargin = 10;
			}*/
			document.getElementById('banner').style.height = "";
			document.getElementById('logo').style.width = 100 + "%";
			document.getElementById('banner-right').style.width = 79 + "%";
			document.getElementById('logo').style.position = "relative";
		}
		else if (usableWidth <= 800)
		{
			//alert('adjusting banner');
			document.getElementById('banner').style.height = 86 + "px";
			//document.getElemenById('banner-left').style.width = 175 + "px";
			document.getElementById('logo').style.width = 165 + "px";
			document.getElementById('banner-right').style.width = "";
			document.getElementById('logo').style.position = "absolute";
			neededMargin = 25;
			document.getElementById('employer-data').style.width = 180 + "px";
			document.getElementById('employers-label').style.width = 150 + "px";
			document.getElementById('employers-data').style.width = 30 + "px";
		}
			
		document.getElementById('top-menu').style.marginTop = (neededMargin) + "px";
		document.getElementById('top-menu').style.display = "inline";
}
function repositionOnResize()
{
	//alert("resizing");
	positionTopMenu();

}
function setFixedWidths()
{
		var usableW = document.body.scrollWidth;
		if (usableW <= 955)
		{
		//alert("reducing");
		var menuItem = document.getElementById('top-menu');
		menuItem.style.width = 190 + "px";

		}
		else if (usableW > 955)
		{
		//alert("increasing");
		var menuItem = document.getElementById('top-menu');
		menuItem.style.width =  25 + "%";

		}
		
}

/*
		var dataLabelJobSeekers = document.getElementById('job-seekers-label');
			//alert(liveDataText);
		dataLabelJobSeekers.style.fontSize = 13 + "px";
		var dataLabelEmployers = document.getElementById('employers-label');
		dataLabelEmployers.style.fontSize = 13 + "px";
		*/

