// init.models.js


jQuery(document).ready(function() {

    // calculate length of scrollbar
    var thumbs = jQuery('#booknav li').length; // number of thumbnails
    var holder_length = thumbs * 51;

    jQuery('#booknav').jcarousel({
        scroll: 6
    });
    jQuery('#booknav li.jcarousel-item:last').css('width', '48px');
    jQuery('#booknav').css('width', holder_length - 3);
    //
    jQuery('.polaroid_thumbnail').each(function() {
        var imageURL = jQuery(this).attr('src');
        if (jQuery(this).hasClass('polaroid_left')) {
            jQuery(this).css({ 'background': '#fff url(' + imageURL + ') top left no-repeat', 'width': '46px', 'height': '57px' }).attr("src", "images/polaroid.thumbnail-left.png");
        } else {
            jQuery(this).css({ 'background': '#fff url(' + imageURL + ') top left no-repeat', 'width': '46px', 'height': '57px' }).attr("src", "images/polaroid.thumbnail-left.png");
        }
    });
    

});