/// <reference path="jquery-1.3.2.js" />
$(document).ready(function() {
	$('a.email').attr('href','');
	$('a.email').click(function(){
		var adres = $(this).html();
		$(this).attr('href','mailto:'+adres+'@profal.com.pl');
	 });
	});
