
/* reload effect */
$(document).ready(function() {
    $(".reload").click(function(event){
        
        $.get($(this).attr('href'));
        $('<img class="ajax-loading-small" src="/images/main/ajax-loader-small.gif" />')
            .insertAfter( $(this) )
            .animate({opacity: 1.0}, 500)
            .fadeOut('slow', function() {
                $(this).remove();
            });
        event.preventDefault();
    });    

    $(".my_tooltip").tooltip({
        track: true,
        delay: 0,
        showURL: false,
        showBody: " - ",
        fade: 250
    });            

});



