$(document).ready(function() {
	$(document).pngFix();
	
	//custom text
	$('a.email').each(function(){
		e = this.rel.replace('[at]','@');
		this.href = 'mailto:' + e;
		//$(this).text(e);
	});
	//email as text
	$('a.emailT').each(function(){
		e = this.rel.replace('[at]','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	
});