$.fn.spml = function(opt,type){
	var opt_in = opt.split(",");
	var type;
	if(type == "modm") {
		this.each(function() {
			el = $(this);
			el.each(function(){
			el.html('<a href="mailto:'+el.html().replace(opt_in[0],'@').replace(opt_in[1],'.')+'" title="Email: '+el.html().replace(opt_in[0],'@').replace(opt_in[1],'.')+'">'+el.html().replace(opt_in[0],'@').replace(opt_in[1],'.')+'</a>');
			});
		});
	}
};
