var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){

	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.75',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");

			$("<div style=' PADDING-RIGHT: 20px; BORDER: #333 1px solid; PADDING-LEFT: 20px; FONT-SIZE: 12px; BACKGROUND: #fff;padding-top:10px;'><h1 style=' FONT-WEIGHT: bold; FONT-SIZE: 12px;  COLOR: #333; FONT-FAMILY: Helvetica,Arial,sans-serif'>Did you know that your Internet Explorer is out of date?</h1><p style='FONT-SIZE: 12px;  COLOR: #333; FONT-FAMILY: Helvetica,Arial,sans-serif;FONT-WEIGHT: normal;'><br />To get the best possible experience using our website we recommend that you upgrade to a newer version or other web browser.<br /></p> <h1 style=' FONT-WEIGHT: bold; FONT-SIZE: 12px;  COLOR: #333; FONT-FAMILY: Helvetica,Arial,sans-serif'>Just click on the icons to get to the download page</h1><a href='http://www.mozilla-europe.org/en/firefox/' style='BACKGROUND: url(ie6/background_browser.gif) no-repeat left top; FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 120px; CURSOR: pointer; HEIGHT: 122px'><DIV  style='BACKGROUND:url(ie6/browser_firefox.gif) no-repeat left top; MARGIN: 1px auto; WIDTH: 100px; HEIGHT: 100px'></DIV><DIV  style='FONT-SIZE: 0.8em; MARGIN: 1px auto; WIDTH: 118px; COLOR: #808080; LINE-HEIGHT: 17px; HEIGHT: 18px; TEXT-ALIGN: center'>Mozilla firefox</DIV></a> <a href='http://www.microsoft.com/Downloads/details.aspx?familyid=341C2AD5-8C3D-4347-8C03-08CDECD8852B&displaylang=en' style='BACKGROUND: url(ie6/background_browser.gif) no-repeat left top; FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 120px; CURSOR: pointer; HEIGHT: 122px'><DIV  style='background-image: url(ie6/browser_ie.gif); MARGIN: 1px auto; WIDTH: 100px; HEIGHT: 100px'></DIV><DIV  style='FONT-SIZE: 0.8em; MARGIN: 1px auto; WIDTH: 118px; COLOR: #808080; LINE-HEIGHT: 17px; HEIGHT: 18px; TEXT-ALIGN: center'>Internet Explorer 8+</DIV></a>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 410,
				paddingRight: 10,
				height: 200,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}
