$(document).ready(function() {
  $('.expandTarget').hide();
  $('.expandLink').css('display', 'inline');
  $('.expandLink').toggle(
    function() {
      $('.expandTarget').show();
      $(this).html('Hide Search Options');
  },function() {
    $('.expandTarget').hide();
    $(this).html('More Search Options');
  });
});
