// JavaScript Document
var appName=navigator.appName;
var b_version=navigator.appVersion;
//alert(b_version.substring(17, 25));
//alert(appName);
if ((appName == 'Microsoft Internet Explorer') &&  (b_version.substring(17, 23) == 'MSIE 7')) {
	document.getElementById("banner").style.top="0";
}
if ((appName == 'Microsoft Internet Explorer') &&  (b_version.substring(17, 23) == 'MSIE 6')) {
	document.getElementById("banner").style.top="0";
}
if ((appName == "Netscape" || appName == 'Opera') || ((appName == 'Microsoft Internet Explorer') &&  (b_version.substring(17, 23) == 'MSIE 8'))) {
	document.getElementById("navcontainerFull").style.position="relative";
	if (appName == 'Opera') {
		document.getElementById("navcontainerFull").style.top="+7px";
		document.getElementById("banner").style.top="+7px";
	}
	else {
		document.getElementById("navcontainerFull").style.top="+4px";
	}
	if (document.getElementById("navcontainer") != null) {
		document.getElementById("navcontainer").style.position="relative";
		document.getElementById("navcontainer").style.top="-12px";
	}
	if (document.getElementById("infoPanel") != null) {
		document.getElementById("infoPanel").style.position="relative";
		document.getElementById("infoPanel").style.top="-11px";
	}
	if (document.getElementById("navCntnrLeft") != null) {
		document.getElementById("navCntnrLeft").style.top="-10px";
	}
	if (document.getElementById("navLeft") != null) {
		document.getElementById("navLeft").style.margin="0% 0% 10px -25%";
	}
	if (document.getElementById("navLeftSpec") != null) {
		document.getElementById("navLeftSpec").style.margin="0% 0% 10px -25%";
	}
	/*if ((appName == 'Microsoft Internet Explorer') && (b_version.substring(17, 23) == 'MSIE 8')) {
		document.getElementById("banner").style.height="98px";
		document.getElementById("banner").style.position="relative";
		document.getElementById("banner").style.top="-20px";
		
	}
	/*else {
		document.getElementById("banner").style.height="99px";
	}*/
	if (document.getElementById("panelFoot") != null) {
		document.getElementById("panelFoot").style.position="relative";
		document.getElementById("panelFoot").style.top="-22px";
	}
}