/** funkce pro web */
//srovnání velikostí sloupců
function equalHeight(group) {
 	    tallest = 0;
 	    group.each(function() {
 	        thisHeight = $(this).height();
 	        if(thisHeight > tallest) {
 	            tallest = thisHeight;
 	        }
 	    });
 	    group.height(tallest);
 		}

function centerPopup(){  
	//request data for centering  
	var windowWidth = document.documentElement.clientWidth;  
	var windowHeight = document.documentElement.clientHeight;  
	var popupHeight = $(".popup").height();  
	var popupWidth = $(".popup").width();  
	//centering  
	$(".popup").css({  
	"position": "absolute",  
	"left": windowWidth/2-popupWidth/2,
	"top": "100px"  
	});
};


// Přidání odeslání formuláře pomocí Enter pro IE
/*
$(document).ready(function(){
	 $(document).pngFix();
	   
	 $('input').keydown(function(e){
		 if (e.keyCode == 13) {
			 $(this).('#search').submit();
			 return false;
		 }
	 });

});
*/
