// JavaScript Document
//<![CDATA[    
   // When the page is ready
   $(document).ready(function(){
     $("form .hideme").hide();
     $("form div.actions")
       .prepend("<span class='readbody'><a href='' title='View Additional Search Criteria'>View Additional Search Criteria</a></span>");
     
     $(".actions span.readbody a").click(function(event){
       $(this).parents("div").prev(".hideme").toggle();
       
       // Stop the link click from doing its normal thing
       return false;
     });
   });
 //]]>