jQuery(document).ready(function(){
	$('#menu .subMenu').click(function() {
		$(this).next().slideToggle("slow");
		$(this).toggleClass("close");
	}).each(function() {
		if ($(this).hasClass("close")) {
				$(this).next().hide();
		}
	});
	
	
	$('#menu .block > a').click(function(event) {
		event.cancelBubble = true;
		if (event.stopPropagation) event.stopPropagation();
	});

	$('a.mail').each(function() {
		var reZavinac =  /( |%20)\[zavináč\]( |%20)/g;
		var reTecka = /( |%20)\[tečka\]( |%20)/g;
		var reZavinac2 =  /%20\[zavin%C3%A1%C4%8D\]%20/g;
		var reTecka2 = /%20\[te%C4%8Dka\]%20/g;
		var href = this.href;
		href = href.replace(reZavinac,"@");
		href = href.replace(reTecka,".");
		href = href.replace(reZavinac2,"@");
		href = href.replace(reTecka2,".");
		this.href = href;
		if (this.innerText) {
			this.innerText = this.innerText.replace(reZavinac,"@").replace(reTecka,".");
		} else {
			this.textContent = this.textContent.replace(reZavinac,"@").replace(reTecka,".");
		}
	});
});