// tabinator ajax magic
$(document).ready(function()
{
    $('.tabinator').click(function() {
        $(".tabbed-page."+ this.rel +" ul li a").removeClass("selected");
        $(this).addClass("selected");
        $("#loading_"+ this.id).fadeIn('fast');
        $('#'+ this.rel).load("/site/modules/tabinator/controller.tabinator.module.php?q="+ this.id, function() {
            $(".wait").fadeOut('fast');
        });
    });
});