$(function (){
	$('#detail-area').hide();
	$('#area').click(function(){
		$('#detail-area').toggle('fast');	
	});

});
