// JavaScript Document
$(document).ready(function() {
				$('div#follow').hover (function() {
						$(this).stop().animate ({ "height":"250px" }, {duration: 500, easing: 'easeInOutCirc' });			
						  },
						  function() { $(this).stop().animate ({ "height":"70px" }, 500 );
				});
});
