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

	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: '#cccccc',
				'opacity': '0.8',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div><p style='font:bold 11px verdana; color:#666666; padding:10px; line-height:18px;'><b>Unser Themenshop mit Hundebekleidung wird zur Zeit &uuml;berarbeitet. Alle Produkte und noch viele mehr finden Sie auch im dogtower.de Hunde Shop: <a href='http://www.dogtower.de/'>www.dogtower.de</a></b></p>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 410,
				paddingRight: 10,
				height: 200,
				'position': 'absolute',
				zIndex: 6000,
				border: '4px solid #cccccc'
			})
			.appendTo("body");
	});		
}