//TABELE
$(function() {

    setup_admin_tables = function() {
        $("table.admin tbody tr").each(function() {
            $(this).removeClass('mouseover')
        })

        $("table.admin tbody tr").unbind().mouseover(function() {
            $(this).addClass("mouseover");
        }).mouseout(function() {
            $(this).removeClass("mouseover");
        });

        $("table.admin tbody tr td.a").unbind().click(function() {
            var url = $("div.url",$(this).parent()).html();
            location.href = url;
        });
    }

    setup_admin_tables()


    $('.sidebar_box:first').addClass('first')

})

