$(function() {
    $(".acarousel").aCarousel({
       visible: 7,
       speed: 5,
       auto: false
    });
});    
$(document).ready(function(){
 $('.acarousel img').css('opacity', 0.4);
 $('.acarousel img').hover(function() {
   $(this).fadeTo("slow", 1);
 }, function() {
   $(this).fadeTo("slow", 0.4);
 });
});

