var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){

	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'red',
				'opacity': '0.75',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div><p>Based on your feedback, we are updating the Galls.com website to improve the overall shopping experience for our customers.  Unfortunately the technology required to make these improvements is not supported by older browsers including Internet Explorer 6.</p><p><br>We are working diligently to correct this.  In the interim, you have two options to continue shopping on Galls.com,</p><p><br><a href='http://www.mozilla.com/en-US/firefox/upgrade.html'><b>Download FireFox</a></b>, <a href='http://www.google.com/chrome'>Google Chrome</a>, <a href='http://www.microsoft.com/hk/windows/downloads/ie/getitnow.mspx'>Internet Explorer Version 7</a> or <a href='http://www.microsoft.com/windows/internet-explorer/default.aspx?WT.srch=1'>Internet Explorer Version 8</a> to experience all of these new improvements</p><p><br><br><center><b>Or</b></center><br><br></p><p>If downloading an alternative browser is not an option, you can still shop on Galls.com for the products and brands you trust by clicking on the following link <a href='http://www.galls.com/gallsdev/index.html?utm_source=021110-classic&utm_medium=ga-classic&utm_campaign=ga-classicforIE6'><b>Galls Classic Website</b></a>.</p><p><br>We thank you for your patience and continued business!</p>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 410,
				paddingRight: 10,
				paddingLeft: 10,
				height: 200,
				'position': 'absolute',
				zIndex: 6000
				
			})
			.appendTo("body");
	});		
}