$(document).ready(function() {

  $( 'div.member-detail').hide();

  $('div.board> h2').hover(function(){
   $(this).addClass("hover");
 },function(){
   $(this).removeClass("hover");
 });

  $('div.board> h2').bind( 'click', function(event) {
    $(this).next().slideToggle('normal');
  	if ( $('img', this).eq(0).attr( "src" ) == 'images/info_open.gif' )
  	{
  		$('img', this).eq(0).attr( "src", 'images/info_closed.gif');
  	}
  	else
  	{
  	  $('img', this).eq(0).attr( "src", 'images/info_open.gif');
  	}
  });

});
