// Global JS Utils

$(document).ready(function(){

    $(".search-help-text").hide();
    $(".search-help H3").click(function () { 
      $(".search-help-text").slideDown("slow");
    });
});

