/*
	JQuery plugin for Mailto Links 
	by Rahim Haji
	info@webtrendz.co.uk
	www.webtrendz.co.uk*/

jQuery.fn.safeMailTo = function() {
	return this.each(function(){
			
		var mailtoHref = $(this).attr('href');
		mailtoHref = mailtoHref.replace(mailtoHref,"mailto:" + mailtoHref);
		mailtoHref = mailtoHref.replace("/","@");
		mailtoHref = mailtoHref.replace("|webdesign|",".");
		mailtoHref = mailtoHref.replace("|in|",".");
		
		var mailtoText = $(this).text();
		mailtoText = mailtoText.replace("/","@");
		mailtoText = mailtoText.replace("|webdesign|",".");
		mailtoText = mailtoText.replace("|in|",".");
		$(this).text(mailtoText);
		
		var mailtoTitle = mailtoHref.replace("mailto:","Email: ");
		$(this).attr('title',mailtoTitle);
		
		$(this).click(function(){
			window.location.href = mailtoHref;
			return false;
		});
	});
};