var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){
	$(function(){
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: '333333',
				'opacity': '0.75',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$('<div><p style="font-family: verdana; font-size: 12px; margin:10px;">Our site has detected that you are using Internet Explorer version 6 or below.  Our site is fully functional when being viewed in Internet Explorer 6, but your experience would be greatly enhanced with a newer version of a current web browser.</p><p style="font-family: verdana; font-size: 12px; margin:10px;">For your convenience, we are providing links to free downloads of today\'s most popular web browsers should you decide to upgrade and experience all that our website has to offer:<br><br> - <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9ae91ebe-3385-447c-8a30-081805b2f90b&displaylang=en">Internet Explorer Version 7</a><br> - <a href="http://www.microsoft.com/windows/internet-explorer/">Internet Explorer Version 8</a><br> - <a href="http://www.mozilla.com/">FireFox</a><br> - <a href="http://www.google.com/chrome/">Google Chrome</a></p><p style="font-family: verdana; font-size: 12px; margin:10px;">We hope you enjoy your time at our site and we thank you for your continued patronage.</p>')
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 410,
				paddingRight: 10,
				paddingLeft: 10,
				height: 200,
				'position': 'absolute',
				zIndex: 6000
				
			})
			.appendTo("body");
	});		
}
