/*
 * Scripts
 *
 */
jQuery(function($) {
 	var Scripts = {
		links : function(){
			$('a.email').each(function(){
				e = this.rel.replace('/','@');
				this.href = 'mailto:' + e;
				$(this).text(e);
			});
		}
	};

	Scripts.links();
});
