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

	$(function(){
		
		$('<div id="block">')
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.75',
				'width': '100%',
				'height': '100%',
				zIndex: 99999
			})
			.appendTo("body");
			
		$("<div id='notice'><img src='http://localhost/LAUGHITOFF_WP/wp-content/themes/lio/img/ieblocker/no-ie6.png' alt='' style='float: left;'/><p><br /><strong>Sorry! We have detected that you are running Internet Explorer 6.</strong><br /><br />This website is not optimized for Internet Explorer 6.<br /><br />If you'd like to view this website the way it was intended, please <b><a href='http://www.mozilla-europe.org/en/firefox/'>upgrade your browser</a></b> to a more up to date one.</p><p><a href='#' class='closeblocker'>Alternatively you can click here to close this notice and continue browsing the site with Internet Explorer 6.</a></div>")
			.css({
				backgroundColor: '#fff',
				'top': '200px',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 410,
				'opacity': '1',
				paddingRight: 10,
				paddingLeft: 10,
				height: 200,
				'position': 'relative',
				zIndex: 999999
			})
			.prependTo("body");
	});
	
}


$(function(){
	$('a.closeblocker').click(function() {
		$('#block, #notice').remove();
	});
});