$(document).ready(function () {
							
	$('.wmail').each(function (i) {
		 if($(this).attr("value")){
			 var temphref = $(this).attr("value");
			 temphref = temphref.replace("[atte]","@");
			 temphref = temphref.replace("[p]",".");
			 $(this).attr("value",temphref);
			 $('#mailtoLink').attr("href","mailto:"+temphref);
		 }
	}) 	

})

$( function() {
	$( '.outgoing' ).each(
	  function() { this.target = '_blank'; }
	);
  }
);
