/**
 * @author Thiago Miranda de Oliveira
 */
$(document).ready(function(){
   $.include(paths.js+'jquery.accordion.use.js');
   
   $('a[href*=mailto]').each(function(e){
		var mail = this.href;
		mail = mail.replace(/\[at]/,'@');
		mail = mail.replace(/\[dot]/,'.');
		this.href = mail;
		$(this).text(mail.substr(7));
	});
   
});
