$(document).ready(function()
{ 
$('li.more').hide();
$('a.albumsShowMore').click(function()
   {
   $('li.more').show('slow');
   $(this).hide();
   return false;
   });
});
