jQuery(document).ready(function($){
	var $div = $('.closeForm');
	var height = $div.height();
	$div.hide().css({ height : 0 });
	
	$('.openForm').hover(function () {
	  
		$div.show().animate({ height : height }, { duration: 500 });
		
	  return false;
	});
	$('.close').click(
			function () {
	  if ( $div.is(':visible') ) {
		$div.animate({ height: 0 }, { duration: 500, complete: function () {
			$div.hide();
		  } 
		});
	  } 
	  return false;
	});

});
