$(document).ready(function(){
    
	$(".jezyki .off, .animacja img").fadeTo("fast", 0.5);
	
    $(".fade, .form-send").hover(
      function () {
        $(this).fadeTo("fast", 0.5);
      }, 
      function () {
        $(this).fadeTo("fast", 1);
      }
    );
	
	    $(".off, .animacja img").hover(
      function () {
        $(this).fadeTo("fast", 1);
      }, 
      function () {
        $(this).fadeTo("fast", 0.5);
      }
    );
	
	$(".mapka").click(function() { window.open('mapka.html', '', 'width=630, height=459, status=no,toolbar=no, menubar=no, location=yes, scrollbars=yes, screenX=200, screenY=200'); return false; });
	
 });