$(document).ready(function(){
 $("a[rel='contact']").each(function (){
   strEmail = "";
	 var strName = this.href.slice(this.href.lastIndexOf('#')+1);
	 strEmail = strName + "@osyachting.com";
	 this.innerHTML = strEmail; 
	 this.href = "mailto:" + strEmail; 
	 this.title = strEmail; 
} )
} )

