

var ie = $.browser.msie;
var b_version = parseInt($.browser.version,10);
if(ie && b_version == 6) {
	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.75',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000000000
			})
			.appendTo("body");
			
		$("<div><img src='" + site_url + "/addons/cassette/js/no-ie6.png' alt='' style='float: left;'/><p><br /><strong>Sorry! Our website does not support Internet Explorer 6 due to security reasons. Please go to <a href='http://www.microsoft.com.au/ie/'>www.microsoft.com/ie/</a> to update.</strong><br /></p>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -215,
				marginTop: -100,
				width: 430,
				paddingRight: 10,
				height: 200,
				'position': 'absolute',
				"z-index": 10000000000000
			})
			.appendTo("body");
			
		$("#content-inner").hide();
	});		
}
