$(function() {
	
	if ($("#boxInfo").length > 0) {
		var elem = $("#boxInfo");
		
		var height = $("#boxInfo").height();
		$("#boxInfo").css("marginTop", parseInt(height/2)+"px").fadeIn(500);
		
		
		$("#zavritBox").click(function() {
			$("#boxInfo").fadeOut(500);
			return false;
		});
		
	}
	
	
});

