$(document).ready(function(){

   $('.expandable').each(function(i,e){
       $(this).css('display','none');
       $(this).attr('id','area' + i);
       $(this).after('&nbsp;<a href="#area' + i + '" class="expand-close">more</a>');
   });

   $('.expand-close').click(function(e){
       var hash = this.hash;

       var status = $(hash).css('display');

       $(hash).toggle();

       if(status != 'none'){
           $(this).text('more');
          // scroll(0,0);
       }
       else{
           $(this).text('hide');
       }

       e.preventDefault();
    });

});
