/* jquery.mailto by lisarael@com2b */

jQuery(function() {
	jQuery('a[rel^=mailto|]').each(function() {
		var m=jQuery(this).attr('rel').substring(7).split('|');
		var a=jQuery.trim(m[1]+m[0]+m[2]);
		jQuery(this).attr('href','mailto: '+a).not(':has(>img)').text(a);
	});
});