/**
 * Main javascript file
 */

$(document).ready(function() {

    $('ul.sites a').click(function() {
        if(this.parentNode.className.match('active')) {
            return false;
        }
        var site = $(this).attr('class');
        $(this).parent().parent().children().removeClass('active');
        var link = this;
        $.post(this.href+'&ajax', function(response) {
            $('#contentContainer').fadeOut(function() {
                $('#contentContainer').html(response);
                $(link).parent().addClass('active');
                $('#contentContainer').fadeIn();
                tb_init('#contentContainer a.thickbox');
            });
        });
        return false;
    });

});

