$(document).ready(function() {
    $('#menu_top a[title]').tooltip({
        position: 'top center',
        offset: [-5, 0]
    });
    
    $('#menu_bottom a[title]').tooltip({
        position: 'bottom center',
        offset: [11, 0]
    });
    
    $('#center_left input[title]').tooltip({
        position: 'center right',
        offset: [0, 22]
    });
    
    $('#center_right a[title]').tooltip({
        position: 'center right',
        offset: [0, 15]
    });
    
    $('#footer a[title]').tooltip({
        position: 'top center',
        offset: [-8, 0]
    });
    
    $("#center_right a[href='" + location.pathname + "']").css('color', '#464646');
});
