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.75',
				'width': '100%',
				'height': '20px',
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div class='warning'><p>Sorry, this site does not support Internet Explorer 6. Please <a href='http://www.microsoft.com/uk/windows/internet-explorer/worldwide-sites.aspx'>update to Internet Explorer 8 here</a> or install another browser.</p>")
			.css({
				backgroundColor: '',
				'top': '0',
				'left': '50%',
				marginLeft: -480,
				marginTop: 0,
				width: 960,
				paddingRight: 0,
				height: 20,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}
