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

	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '1',
				'width': '100%',
				'height': $(document).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div><a href='http://www.getfirefox.com'><img src='images/IE6-warnung.jpg' alt='' style='float: left;'/></a>")
			.css({
				backgroundColor: 'black',
				'top': '30%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 548,
				height: 400,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}