$(document).ready(function() {
    $(".thumb").mouseover(function() {
        $("#"+$(this).attr("id")+"-info").show();
    });
    $(".thumb").mouseout(function() {
        $("#"+$(this).attr("id")+"-info").hide();
    });

    $("a.nav").remote("#content");
    $.ajaxHistory.initialize();
});
