//Efetky
$(document).ready(function() {
	LoadMyEfekt();
});


function LoadMyEfekt() {
	
	// inicjacja PNG FIX
	//$(document).pngFix();


  // Input - Szukaj
  if ( $(".searcher_txt").attr("value") == "" || $(".searcher_txt").attr("value") == undefined ) {
		$(".searcher_txt").attr("value", "WPISZ SWÓJ ADRES E-MAIL");
  }
	$(".searcher_txt").focus( function() {
		if ( $(this).attr("value") == "WPISZ SWÓJ ADRES E-MAIL" ) {
			$(this).attr("value", "");
		}
	});
	$(".searcher_txt").blur( function() {
		if ( $(this).attr("value") == "" || $(this).attr("value") == undefined ) {
			$(this).attr("value", "WPISZ SWÓJ ADRES E-MAIL");
		}
	});

	
	// zoom mapki
  $(".IcoPlus").click(function() {
  	$("#Zoom_1").animate({opacity: "hide"}, 600);
  	$("#Zoom_2").animate({opacity: "show"}, 1200);
  	$(this).attr("src", "view/images/ico_zoom_plus_a.png");
  	$(".IcoMinus").attr("src", "view/images/ico_zoom_minus.png");
  });	
  
  $(".IcoMinus").click(function() {
  	$("#Zoom_2").animate({opacity: "hide"}, 600);  
  	$("#Zoom_1").animate({opacity: "show"}, 1200);
  	$(this).attr("src", "view/images/ico_zoom_minus_a.png");  	
		$(".IcoPlus").attr("src", "view/images/ico_zoom_plus.png");
  });	


	// BtnBiuroKontener
	$(".site").hover (
	  function () {
	    $(".BtnBiuroKontener").animate({clip: 'rect(0px 48px 277px 0px)', right: "-48px"}, 300);
	    $.cookie('BtnVisible', "show");
	  },
	  function () {
	    $(".BtnBiuroKontener").animate({clip: 'rect(0px 48px 277px 48px)', right: "0px"}, 300);
	    $.cookie('BtnVisible', "hide");
	  }
	);

	if ( $.cookie("BtnVisible") == 'show' ) {
		$(".BtnBiuroKontener").css({ clip: "rect(0px 48px 277px 0px)", right: "-48px" });
	}
	
}
