$(function(){
  $('#show-options').click(function() {
    $('#options').slideToggle();
    $(this).toggleClass('open');
    return false;
  });
  $("#search-value").keyup(function(event){   if(event.keyCode == 13){   doSearch();   } }); 
  $(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'pp_default',slideshow:7000, autoplay_slideshow: true});
});

function doSearch()
{
  var searchInput = document.getElementById("search-value");
  if(searchInput.value.length > 0 && searchInput.value != 'search site')
  {
    document.location = "/search.aspx?search="+searchInput.value;
  }
}

function clearSearch()
{
  var searchInput = document.getElementById("search-value");
  if(searchInput.value = 'search site')
  { searchInput.value = ''; }
}
