﻿jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        vertical: true,
        scroll: 2
    });
    
    $("#mycarousel > li > img").mouseover(function(){    
     
            $("#posterImage > a").attr('href', this.src);
            $("#posterImage > a > img").attr('src', this.src);
            $("#posterImage > a > img").attr('style', 'width:192px; height:278px');   
    })
    
    $(function() {
        $('#posterImage a').lightBox();
    });

    
    
});


