$(document).ready(function() {
	$(document).pngFix(); 
	
	// convert email
	if($(".email-address").length > 0) {
		$(".email-address").each(function() {
			var id = $(this).attr("id");
			
			var email = id.replace("AT","@").replace("DOT",".");
			
			$(this).empty().append("<a href='mailto:"+email+"' title='"+email+"'>"+email+"</a>");
		});
	}
});