$(document).ready(function(){
    if ($.browser.msie && $.browser.version.substring(0,1) === '6') {
           $('body').append('<div id="wrong-browser" style="position: absolute; left: 0px; top: 0px; background-color: red; font-size: medium; display: block; width: 100%; text-align: center; color: white ">Twoja przeglądarka nie jest już obsługiwana.Uaktualnij przeglądarkę do nowszej wersji. Pobierz : <a href="http://www.mozilla.com/en-US/products/download.html?product=firefox-3.6.3&os=linux&lang=en-US">Firefox</a></div>');
        }
});


$(document).ready(function(){

	$("ul.depth1").hide(); 

	$("ul.depth0 li").hover(
        function () {
		$(this).children("ul").css('display','block');
        },function(){
		$(this).children("ul").css('display','none');
	})

});