$(document).ready(function(){

	$(".pointer").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

	$('.er').each(function(index) {
	    
	    var e = $(this).attr('rel')+ "@" + $(this).text();
	    $(this).replaceWith('<p><a href="mailto:' + e + '">' + e + '</a></p>')
	});
  

});


