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.9',
				'width': '2000px',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div><h2 style='font-size: 21px; text-align: center; margin: 15px 0'>Your Browser is Outdated!</h2><img src='images/noie.jpg' alt='' style='float: left; margin: 15px 20px 50px 10px'/><p><br /><b>Sorry, but our site doesnt support Internet Explorer 6. We highly reccomend updating your browser to one of the following: (click to download)</b><br /><br /><div style='clear:right; width: 200px'><a href='http://www.downloadfirefoxbrowser.com/'><img src='images/firefox.jpg' border='0' style='float:left; margin: 0 10px 5px 5px'/></a><a style='color:white' href='http://www.downloadfirefoxbrowser.com/'>Firefox</a></div><div style='clear:right; width: 200px'><a href='http://www.apple.com/safari/download/'><img src='images/safari.jpg' border='0' style='float:left; margin: 0 10px 5px 5px'/></a><a style='color:white' href='http://www.apple.com/safari/download/'>Safari</a></div><div style='clear:right; width: 200px'><a href='http://www.google.com/chrome/index.html?hl=en&brand=CHMA&utm_campaign=en&utm_source=en-ha-row-bk&utm_medium=ha'><img src='images/chrome.jpg' border='0' style='float:left; margin: 0 10px 5px 5px'/></a><a style='color:white' href='http://www.google.com/chrome/index.html?hl=en&brand=CHMA&utm_campaign=en&utm_source=en-ha-row-bk&utm_medium=ha'>Chrome</a></div><div style='clear:right; width: 200px'><a href='http://www.microsoft.com/windows/Internet-explorer/default.aspx'><img src='images/ie8.jpg' border='0' style='float:left; margin: 0 10px 5px 5px'/></a><a style='color:white' href='http://www.microsoft.com/windows/Internet-explorer/default.aspx'>Internet Explorer 8</a></div></p>")
			.css({
				backgroundColor: '#2d2d2d',
				'border':'5px solid white',
				'top': '50%',
				'left': '50%',
				'color': 'white',
				marginLeft: -210,
				marginTop: -100,
				width: 410,
				paddingRight: 15,
				height: 315,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}
