jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        });
});

$(document).ready(function() {
  
  $(".jcarousel-skin-fb li").fadeTo("slow", 0.4); // This sets the opacity of the thumbs to fade down to 60% when the page loads

	$(".jcarousel-skin-fb li").hover(
      function() {
           $(this).fadeTo("slow", 1.0); 
      },function() {
            $(this).fadeTo("slow", 0.4); // This should set the opacity back to 60% on mouseout
}); 
 }); 


