// Basic JS Functionality

   // Show and Hide Content
   $(document).ready(function(){
     $(".panelcontent .panelsection").hide();
     $(".panelcontent ul")
       .prepend("<li class='readsection'><a href='' title='Read More'>Read More</a></li>");
     
     $(".actions li.readsection a").click(function(event){
       $(this).parents("ul").prev(".panelsection").toggle();
       
       // Stop the link click from doing its normal thing
       event.preventDefault();
     });
   });

