// JavaScript Document

temp=''
ieVer=''
// Split the string into part [0] and part [1]
temp=navigator.appVersion.split('MSIE');
// Parse the string for the "6" in 6.0
ieVer=parseInt(temp[1]);
// Is it greater than 6?
var isie8=(ieVer > 7 && ieVer > 7)?true:false;

if (isie8==true){
	document.write('<style type="text/css" media="screen">div.logoDiv{margin-top:5px;} .navbar{margin-top:-3em;}</style>');
}