$(document).ready(function(){
    if (typeof init=='function')
    {
        init();
    }

    $('DIV[title]').qtip({
        position: {
            my: 'top center',
            at: 'bottom center'
        }
    });
    
    $('a').click(function() 
    {
        this.blur();
    });
});  
