$(document).ready(function() {
    $('#tooltip1').addClass('centered');
    $('#last_project a, #last_project span').mouseover(function(){
        var data_info = $(this).parent().find('span.hi').html();
        $('#tooltip1').html('<span>'+data_info+'</span>');
    }).tooltip({
        events: {
            def: "mouseover,blur",
            tooltip: "mouseover,mouseout"
        },
        // place tooltip on the right edge
        position: "top center",
        // use the built-in fadeIn/fadeOut effect
        effect: 'fade',
        //effect: 'slide',
        offset: [-5, -110],
        // use this single tooltip element
        tip: '#tooltip1'
    });
    
    $('a[href=#show_comments]').click(function() {
        var c = $('#comments_container');
        if(c.css('display').toLowerCase() == 'none') c.show();
        else {
            c.hide();
            document.location.hash = '';
            return false;
        }
    });
    
    if(document.location.hash) {
        $('a[href='+document.location.hash+']').click();
    }
});
