function fix()
{
	//get rid of the ugly bar at the bottom of the screen
	document.getElementById("box").style.paddingBottom='0';
	
	//make sure the content box is always at least as high as the ads box
	var adsh = document.getElementById("ads").offsetHeight;
	var conh = document.getElementById("content").offsetHeight;
	if (conh < adsh){
		document.getElementById("content-height").style.height=adsh-conh+"px";
	}
	
	//if ads arent there then hide the div to make it sexier
	if (adsh<=10){
		document.getElementById("ads").style.display="none";
	}
	
	
	
	//solve problem with the inner nav getting two lots of rounded corners
	var tn = document.getElementById("innernav").firstChild;
	while (tn.firstChild.style.display == "")
	{
		tn.firstChild.style.display="none";
		tn.lastChild.style.display="none";
		tn = tn.nextSibling;

		if (tn==null){
			break;
		}
	}
}