//Efetky$
$(document).ready(function() {
	LoadMyEfekt();
});


function LoadMyEfekt() {

	window.onresize = arguments.callee;
	var MyWindowHeight = $(window).height();
  var MyWindowWidth = $(window).width();
  //var MyScreenHeight = window.screen.height;
  //var MyScreenWidth = window.screen.width;  

	// 0
  MyMiddlePage = (MyWindowHeight - $(".GalleryKontener").height()) / 2;
  
	if (MyWindowHeight > 700) {
  	$(".GalleryKontener").css({ marginTop: MyMiddlePage, 	border: "2px solid #979897", background: "url(images/bg_papier.jpg) no-repeat 0% 0%" });
  } else {
  	$(".GalleryKontener").css({ marginTop: MyMiddlePage, 	border: "0px solid #979897", background: "none" });
	} 

  
	// 1
	$(".ClickImg").css("opacity", 0.4);
	

  // 2  
	$(".ClickImg").hover(function() {
		$(this).stop().animate({opacity: 1.0}, 200);
  	},function() {  	
			$(this).stop().animate({opacity: 0.4}, 200);
	});


	// 3
  $(".BtnOver").mouseover(function() {
  	var Nazwa = $(this).attr("id");
    $(this).attr("src", "images/"+Nazwa+"_a.png");
  }).mouseout(function() {
  	var Nazwa = $(this).attr("id");
    $(this).attr("src", "images/"+Nazwa+".png");
  });	


	// 4
	$(".GalleryKontener").hover(function() {
		$(".PdfKontener").animate({opacity: "show"}, 300);
		$.cookie("BtnPdf", "show");
  	},function() {
			$(".PdfKontener").animate({opacity: "hide"}, 200);
			$.cookie("BtnPdf", "hide");
	});

	if ( $.cookie("BtnPdf") == 'show' ) {
		$(".PdfKontener").show();
	}

	
}

