$(document).ready(function(){

   jQuery('li.morelink').click(function() {
 var theID = $(this).attr("id");
 if ($("#" + theID).text() == 'more...') {
      $("li." + theID + "hidden").show("slow");
      $(this).text("less...");}
    else {
      $("li." + theID + "hidden").hide("slow");
      $(this).text("more...");}
    });


    $("#clearAll").click(function() {
        $("#queryForm").clearForm();
        $("#queryForm select[@name='s'] option[@value='']").attr("selected","selected");
        return false;
    });

    $("term").focus();

});

