jQuery(document).ready(function() {
    if ( jQuery('#productImages').length > 0 ) {
        jQuery('#productImages').jcarousel({
            start : 1,
            scroll : 1,
            visible: 1,
            animation: 'slow',
            buttonNextHTML: "<div class='arrow_right'><a href='#' onClick='return false'></a></div>",
            buttonPrevHTML: "<div class='arrow_left'><a href='#' onClick='return false'></a></div>"
        });
    }

    jQuery('.item_details_container').mouseenter(function(){
        $('.item_details').stop().animate({opacity: 1});
    });

    jQuery('.item_details_container').mouseleave(function(){
        $('.item_details').stop().animate({opacity: 0});
    });

    $('.item_details').delay(1000).animate({opacity: 0});
});

