/*
 * --------------------------------------------------------------------
 * Beginning jQuery animations
 * by Siddharth S, www.ssiddharth.com, hello@ssiddharth.com
 * for Net Tuts, www.net.tutsplus.com
 * Version: 1.0, 06.01.2010 	
 * --------------------------------------------------------------------
 */

$(document).ready(function() 
{	
	
	$("#newsletterformbox").hover(function() {
    $(this).animate({ height: 380 }, "slow");
	$("#newsletterinfotext").stop(true, true).animate({ height: 0 }, 'slow');
  }, function() {
	  $("#newsletterinfotext").animate({ height: 55 }, "slow");
	  $(this).stop(true, true).animate({ height: 100 }, 'slow');
  });


});

$(document).ready(function() 
{	
	
	
	$(".presse").hover(function() {
	 
	$(this).stop(true, true).animate({ height: 180 }, 'slow');
  }, function() {
	 $(this).animate({ height: 30 }, "slow");
  });

});
