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': $(window).width(),
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div id='IE6disclaimer' align='justify'><p><h3>Sorry, You're Currently Using An Outdated Internet Browser.</h3></p><br /><p>Since we believe a positive user experience, and the best enhancements we can give we have moved away from Internet Explorer 6 as a primary focus.</p><br /><p>If you'd like to read our content, please <strong>upgrade</strong> your browser for <strong>Free</strong> <a href='http://www.mozilla.com/firefox/'>FireFox</a>, <a href='http://www.google.com/chrome'>Chrome</a>, <a href='http://www.microsoft.com/windows/products/winfamily/ie/default.mspx'>Internet Explorer 7 or higher</a>. You may also <a href='http://www.ecvisualmedia.com/IE6'>visit our pages specifically designed for IE 6</a>, please be aware that some of the user experience enhancements have been excluded for use with IE 6.</p><br /><br /><p class='disclaimerClosing'>Improving everyone's usability and experience one Website and one Browers at a time; Plugged In Media Designs, By The <a href='http://www.ecvisualmedia.com' target='_blank'>ECVisualMedia Group</a>.</p>")
			.css({
				'position': 'absolute',
				'top': '30px',
				'left': '20px',
				backgroundColor: 'white',
				fontFamily: 'Arial',
				width: 500,
				padding: 80,
				height: 300,
				zIndex: 6000
			})
			.appendTo("body");
	});		
}