/* ********************************************* */
/* Change CSS settings in certain situations     */
/* Input: BrowserDetect.browser                  */
/* Output:DOM CSS changes                        */
/* ********************************************* */

/* Adjust for IE quirks   */
if (BrowserDetect.browser == "Explorer")
	{
	document.getElementById('longbox').style.marginTop = "90px"; 
	document.getElementById('subtitle').style.marginTop = "-10px";
	document.getElementById('homecontact').style.marginTop = "-20px";
	/*document.getElementById('opaque').style.filter = "alpha(opacity=80)";*/
	if (BrowserDetect.version == "7")
		{
		document.getElementById('subtitle').style.marginTop = "0.5%"; 
		/*document.getElementById('producttabD').style.left = "-10px"; */
	}
}

/* Make sure text fits in window if width smaller than 900px */
if (screen.availWidth < 900) 
	{ 
	document.getElementById('longbox').style.fontSize = "0.7em";  
	} 

/* Adjust for IE quirks   */
if (BrowserDetect.browser == "Opera")
	{
	document.getElementById('subtitle').style.marginTop = "-1%"; 
	document.getElementById('longbox').style.marginTop = "90px"; 
}
