$(document).ready(function(){

$('.effect').each(function() { 
   $(this).hover(function() { 
      $(this).stop().animate({ opacity: 0.3 }, 200).animate({ opacity: 1.0 }, 200); 
   }, 
   function() { 
       $(this).stop().animate({ opacity: 1.0 }, 200); 
   })
   });

$(".jcarousel").jCarouselLite({
    btnNext: ".next",
    btnPrev: ".prev",
    visible: 5
});   

$(".jcarousel li a").fancybox({ });

});
