    $(document).ready(function(){ 
        $(document).pngFix(); 

    	$("#left ul#left_menu li a").hover(function() {
    		$(this).stop().animate({ 
    			paddingLeft: '17'
    		}, 200);
    	} , function() {
    		$(this).stop().animate({
    			paddingLeft: '10'
    		}, 150);
    	});
        $("#left ul#left_menu li ul li a").hover(function() {
    		$(this).stop().animate({ 
    			paddingLeft: '27'
    		}, 200);
    	} , function() {
    		$(this).stop().animate({
    			paddingLeft: '20'
    		}, 150);
    	});
        
        $('form#form_kontakt').validate();
        $('form#dowiedziec_sie').validate();
        
        $('div#header').flash({
		  src: 'swf/top.swf',
		  wmode: 'transparent',
		  width: 963,
		  height: 157 },
          { version: 8 });
          

    });
