// skrývání flash zpráviček
$("div.flash").livequery(function () {
	var el = $(this);
	setTimeout(function () {
		el.animate({"opacity": 0}, 2000, function(){
			el.css("display", "none");
		});
		el.slideUp();
	}, 7000);
});

