$("a.mail").livequery(function () {
	$(this).attr('href', function() {
		return $(this).attr('href').replace(/mailto:(\S+)@(\S+)/, 'mailto:$2@$1');
	});
});

$('em.mail, span.mail').livequery(function() {
	$(this).text($(this).text().replace(/(\S+)@(\S+)/, '$2@$1'));
});

$("div.flash").livequery(function () {
	var el = $(this);
	setTimeout(function () {
		el.animate({"opacity": 0}, 2000);
		el.slideUp();
	}, 7000);
});

$("a.confirm").live("click", function () {
	return confirm('Opravdu si přejete vykonat akci: ' + $(this).text() + '?');
});

