
$(document).ready(function(){
    $("#daysbuttons .day img").fadeTo(0, 0.33);
    $("#daysbuttons .day").bind("mouseenter", function(){
        $(this).find("img").fadeTo("slow", 1);
    });
    $("#daysbuttons .day").bind("mouseleave", function(){
        $(this).find("img").fadeTo("slow", 0.33);
    });
    jQuery('#buttonscarousel').jcarousel({
        auto: 2,
        wrap: 'last',
        vertical: true,
        scroll: 1,
        buttonNextHTML: null,
        buttonPrevHTML: null,
        initCallback: mycarousel_initCallback
    });    
});

function mycarousel_initCallback(carousel)
{
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

jQuery(document).ready(function() {

});

