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

	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				'right': '0px',
				'bottom': '0px',
				backgroundColor: 'black',
				'opacity': '0.83',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
 		$("<div><br/><img src='http://www.superatic.com/MAterial/images/no-ie.png' alt='' style='float: left;'/><p><br /><strong>Sorry!<br/> But your InternetExplorer <br/>does not support this WebSite!</strong><br /><br/>Oh noez! Please, for optimal viewing,<br/> get yourself a sophisticated browser <br/> like <a href='http://apple.com/safari' target='blanck'>Safari</a>, <a href='http://google.com/chrome' target='blanck'>Chrome</a> or <a href='http://getfirefox.com' target='blanck'>FireFox</a>!<br/><br/><br/>")
			.css({
				backgroundColor: 'white',
				'top': '38%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 386,
				paddingRight: 10,
				height: 138,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}