﻿/// <reference path="jquery-1.3.2-vsdoc2.js" />
$(document).ready(function() {
    //Wire up book select/click event
    $("select.BookList").change(function() {
        document.location.href = $(this).val();
    })

});

$(window).load(function() {
    //Preload image
    var imgNext = document.createElement('img');
    imgNext.src = $("input#hdnPreloadNextImg").val();
});
