$(document).ready(
function()
{   

 var ostrzezenieTxt = "<span>Uwaga!!!</span><br />Używasz starej, niewspieranej i niebezpiecznej przeglądarki. Zaktualizuj swoją przeglądarke do nowszej wersji klikając tu: <a href=\"http://www.browserchoice.eu\" target=\"_blank\"><strong>KLIKNIJ</strong></a>";
 var ostrzezenie = "<div class=\"ost\"><p>"+ostrzezenieTxt+"</p></div>";
 
 var przegladarka = navigator.userAgent;;
 
	 if(przegladarka.indexOf("MSIE 6.0") != -1){
		 
		 $('body').prepend(ostrzezenie);
		 $('.ost').fadeIn('slow');
		  
		 $('.ost').hover(		 
			 function(){
			  $(this).css('background', 'white');
			 },
			 function(){	 
			  $(this).css('background', '#f0ff00');	 
			}
		 );
	 
	 }


});