// JavaScript Document
//ON DOM LOADED
$(document).ready(function(){

		//EMAIL OBFUSCATION
		$("a.email").each(function()
		{
			var email = String($(this).html()).replace(/\s*\(.+\)\s*/, "@");
			$(this).html(email);
			$(this).attr('href', 'mailto:'+email);
		});
		
});