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

	$(function(){
		
		$("<div id='ie6overlay'>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.75',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div id='ie6overlay2'><p><strong>Because you are using an older browser, this web page may not display correctly. Please consider upgrading to a modern browser.</strong></p><p><a href='http://www.google.com/chrome/' target='_blank'><img src='http://www.brightfox.com.au/foxdata/ie6/browser_chrome.gif' alt='' /></a><a href='http://www.mozilla.com/firefox/' target='_blank'><img src='http://www.brightfox.com.au/foxdata/ie6/browser_firefox.gif' alt='' /></a><a href='http://www.microsoft.com/windows/Internet-explorer/' target='_blank'><img src='http://www.brightfox.com.au/foxdata/ie6/browser_ie.gif' alt='' /></a><a href='http://www.opera.com/download/' target='_blank'><img src='http://www.brightfox.com.au/foxdata/ie6/browser_opera.gif' alt='' /></a><a href='http://www.apple.com/safari/download/' target='_blank'><img src='http://www.brightfox.com.au/foxdata/ie6/browser_safari.gif' alt='' /></a></p></div>")
			.css({
				backgroundColor: '#F5F5F5',
				'top': '50%',
				'left': '50%',
				marginLeft: -260,
				marginTop: -50,
				width: 500,
				padding: 30,
				height: 120,
				'position': 'absolute',
				zIndex: 6000,
				color:'black',
				'text-align':'center'
			})
			.appendTo("body");
			
			$("#ie6overlay").click(function(){$(this).fadeOut(); $("#ie6overlay2").fadeOut();});
	});		
}
