$(document).ready(function() {
	$(".member .btn").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".member .area").css("display","none");
	$(".member .btn").click(function(){
		$(this).next().toggle();
		});
});