/* E-Mail Protection */
$(document).ready(function(){
	$('a.emailpro').each(function(){
		var e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});

	$('a.emailpro2').each(function(){
		var e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		var pmail = '<img src="/userfiles/image/email.gif" alt="" />';
		$(this).html(pmail);
	});	
});
