/// <reference path="jquery-vsdoc.js" />

$(document).ready(function() {
    $('.btnBack').click(function() {
        history.go(-1);
    });

    $('.whereto').hide();

    $('.hidden').click(function() {
        $('.whereto').toggle();
        return false;
    });

});