$(document).ready(function() {    
    $('#mycarouselvert').jcarousel({
        vertical: true,
        animation: 250,
        scroll: 1
    });
    
    $('.detailImage').mouseover(function()
    {
        $('.bigImage').hide();
        $temp = $(this).attr('id').split('_');
        $id = $temp[1];
        $('#bigImage_' + $id).show(); 
    });
    
    $('.maat').click(function()
    {
        $('.maat').removeClass('active');
        $(this).addClass('active');
        $('#maat').val($(this).attr('id'));
    });
});
