$(document).ready(function() {
	//Ochrana e/mailu
	$('a.em').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		
		e2 = $(this).text().replace('/','@');
		$(this).text(e2);
	});
});














