$(document).ready(function() {
   $("#close").hide(); 
	$("#expand").click(function(){
		$("div#intro").animate({
			height: "300px"
		})
		.animate({
			height: "240px"
		}, "fast");
		$("#expand").hide();
		$("#close").show(); 
	});
	$("#close").click(function(){
		$("div#intro").animate({
			height: "50px"
		}, "slow");
		$("#expand").show(); 
		$("#close").hide();
	});
});