// Carousel (Home)
 jQuery(document).ready(function() {
 jQuery('#mycarousel').jcarousel({
 animation: 300,
 scroll: 3
 });
});
 
 // hide all thumbnails
$('#mycarousel li.jcarousel-item').css('opacity', 0).each(function() {
    // when img is loaded, animate opacity to 1
    if (this.complete || this.readyState == 'complete') { $(this).animate({'opacity': 1}, 300) } 
    else { $(this).load(function() { $(this).animate({'opacity': 1}, 300) }); }
});
