closemessage = function() {
	$(".msg").css("display","none");
}
init = function() {
	$("#closemessage").children("a").click(closemessage);
	$("a.newWin").click(function(){
		url = $(this).attr("href");
		window.open(url);
		return false;
	});
	$("a.email").each(function(){
		$(this).html("svejk@svejk-restaurant.cz");
		$(this).attr("href","mailto:svejk@svejk-restaurant.cz");
	});
}
$(document).ready(init);

