$(document).ready(function(){ 
	//alert("all");
	jQuery(document.body).imageZoom();
	$("img.logo").click(function(){window.location.href = ("/")});
    
    var wysokosc = 0;
    $("div.boxHome").each(function(index) { 
      if($(this).height() > wysokosc){
          wysokosc = $(this).height();
      }});
    $("div.boxHome").css("min-height",wysokosc);
    
});


