$(document).ready(function(){  
  
     //When mouse rolls over  
     $(".deroule").mouseover(function(){  
         $(this).stop().animate({height:'75px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
   });  
  	
	 
  
     //When mouse is removed  
     $(".deroule").mouseout(function(){  
         $(this).stop().animate({height:'25px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
     });  
	 
	  $('.concours').mouseover(function () {
          $(this).stop().animate({top:'155px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });
	
	 $('.concours').mouseout(function () {
          $(this).stop().animate({top:'160px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    });
   
 }); 
 
 $(function(){
 
    //Add bounce effect on Click of the DIV
    $('#bouncy1').mouseover(function () {
          $(this).effect("bounce", { times:5 }, 300);
    });
 
    $('#bouncy2').click(function () {
          $(this).effect("bounce", { direction:'left', times:5 }, 300);
    });
 
    $('#bouncy3').click(function () {
          $(this).effect("bounce", { direction:'right', times:5 }, 300);
    });
 
    $('#bouncy4').click(function () {
          $(this).effect("bounce", { direction:'down', times:5 }, 300);
    });
 
    //Bounce all DIVs on click of button
    $("#bounceAll").click(function(){
        $("div").click();
    });
});
