$(document).ready(function () {
    
    $('#accordion ul').accordion(); 

    // MAIL HIDER    
    $(".epost").each(function(i){ 
       var epostadr = $(this).text().replace(/\W?alfakr\wll\W?/i, '@').replace(/\W?alfamark\W?/i, '@').replace(/\W?dot\W?/i, '@').replace(/\W?punktum\W?/g, '.');
        if($(this).attr('title')) var text = $(this).attr('title');
        else var text = epostadr;
        if($(this).attr('value')) var extra = $(this).attr('value'); 
        else var extra = "";  
    	$(this).replaceWith('<a class="epost" hr' + 'ef="mai' + 'lto:' + epostadr + extra+'">' + text + '</a>');       
        });

});


