  jQuery(document).ready(function(){
  jQuery("#SummaryTab").click(function(){
    ToggleContent("#SummaryContent", jQuery(this));
  });
  jQuery("#DescriptionTab").click(function(){
    ToggleContent("#DescriptionContent", jQuery(this));
  });
  jQuery("#RelatedTab").click(function(){
    ToggleContent("#RelatedContent", jQuery(this));
  });
  jQuery("#RatingsTab").click(function(){
    ToggleContent("#RatingsContent", jQuery(this));
  });
  jQuery(".productTab:first").click();
});

function ToggleContent(ID, this_jQuery)
{
    jQuery(".productTab").removeClass("productTabActive");
    this_jQuery.addClass("productTabActive");
    jQuery(".productTabContent").removeClass("ContentShow");
    jQuery(".productTabContent").addClass("ContentHidden");
    jQuery(ID).removeClass("ContentHidden");
    jQuery(ID).addClass("ContentShow");
}

function displayEmail(account, server, domain)
{
    fulllink = " <a href='mailto:" + account + "@" + server + "." + domain + "'>" + "Email Gustwiller's</a>";
    document.writeln(fulllink);
  }

  // Added by ESS
  function filterSearchSubmit() {
    $('#filterForm').submit();
  };