$(document).ready(function() {

    $("a[rel='colorbox']").colorbox();
    $("#references").tablesorter();
    
    /* menu hover */
    var img;
    $("ul#menu li a").hover(
        function() {
            img = $(this).css('background-image');
        },
        function() {
            //console.log(img);
        }
    );

    //faq
    $("h2.question").toggle(
        function() {
            //console.log("down");
            current = $(this);
            $("h2.question").removeClass('active');
            current.addClass('active');
            current.next("div").slideDown('fast');
            $("div.answer").hide();
        },
        function() {
            //console.log("up");
            $(this).next("div").slideUp('fast');
            $("h2.question").removeClass('active');
        }
    );
});
