$(document).ready(
    function(){
        $('#menu-superior a').each(function(){
            if( $(this).text()=='Home' ) {
                $(this).removeAttr('href');
                $(this).removeAttr('title');
                $(this).parent().addClass('active');
            }
        });
    }
);