/***************************/
//@Author: Michel Urvoy
//@Date: 23-02-2009
//@website: www.pixiwave.com
//@email: infos@pixiwave.com
//@license: Feel free to use it, but keep this credits please!	
/***************************/
(function($j){
	$j.fn.extend({
		mailProtect: function(options) {
			var defaults = { 
                   protocol: "mailto:",
				   user: "infos", 
                   domain: "pixiwave.com", 
                   label: "Credits", 
                   at: "@"
            }; 
         
            var options = $j.extend(defaults, options);
			//Create references to the options 
			var protocol = options.protocol;
			var user = options.user;
			var domain = options.domain; 
			var label = options.label; 
			var at = options.at; 
			
			//Insert the email link
			$j(this).html('<a href=\"' + protocol + user + at + domain + '\">' + label + '<\/a>');
		}
	});
})(jQuery);