// ieFix Michael Meder 2008

function isIE()
{
	return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
}



function begin(){
	if(isIE()){
		var oLink = document.createElement("link")
		oLink.href = "/css/ieFix.css";
		oLink.rel = "stylesheet";
		oLink.type = "text/css";
		document.body.appendChild(oLink);
	}
}
