/*$(document).ready(function(){
   $("div.presentation").hide();
   $("div.croisieres").hover(function(){
     $("div.presentation").show('slow').css("z-index", "200").css("left","100px");
     
   },function(){
     $("div.presentation").hide('fast');
     
   });
 });*/
 
 $(document).ready(function(){
  /*  $('#texteur').cycle('fade');             
   $('#fadeur').cycle('shuffle');*/
   $('div.fondeur').cycle({
                   fx: 'zoom',
                   speed: 4000,
                   speedIn: 1000,
                   speedOut: 600
   });
   
   $("img.croisiere").hover(
           
           function(){
                   
  $(this).animate({
                   left:0,
                   top:235,
                   width:150,
                   height:136
                   },500);
  
        
   },
   function() {
   
           $(this).animate({
                   left:20,
                   top:235,
                   width:140,
                   height:127
                   },500);
   }
   
   ); 
   
   
   
   
   
 });

