$(function(){
  
  $('#top_message_area').css({
      position: 'relative'
  });
  $('#top_message_area>div').css({
      position: 'absolute'
    , width: '550px'
  });
  
  $('#top_message_area>div').click(function(){
  	$(this).fadeOut(1000);
  });

  $('#top_message_area_top>div').click(function(){
  	$(this).fadeOut(1000);
  });
  
  //二重押し防止
  $is_click = false;
  $('form').each(function(){
    
    $(this).submit(function(){
      if(!$is_click){
      	$is_click = true;
      }else{
      	return false;
      }
    });
  });
});
