$(document).ready(function(){

		$('a.adresa1').each(function(){
			e = this.rel;
			this.href = 'mailto:' + e + '@epstudio.cz';
			$(this).text(e + '@epstudio.cz');
		});

		$('a.adresa2').each(function(){
			e = this.rel;
			this.href = 'mailto:' + e + '@epstudio.cz';
		});
	});

