$(document).ready(function(){
$("a.carouselimage").fancybox();
$("#carousel").jCarouselLite({
    speed: 1000,
    visible: 1,
    btnNext: "#scrollright",
    btnPrev: "#scrolleft",
    beforeStart: function(o){
    $("a.carouselimage").fancybox();
    }

});
$("#logo").mouseover(function(){
$(this).animate({marginLeft:"10px"},"fast");
});
$("#logo").mouseout(function(){
$(this).animate({marginLeft:"0px"},"fast");
});

/*posizionare centralmente le foto in testata*/
$("#carousel img").each(function(){
var initH = $(this).height();
if(initH>=210){
var rif = parseInt((initH-210)/2);
$(this).css("margin-top","-"+rif+"px");
}
});
});
