$(document).ready(function()  {
   $('table.productSpecification tbody tr:odd').addClass('odd');
   $('table.productSpecification tbody tr:even').addClass('even');
   $('table.productOverview tbody tr:odd').addClass('odd');
   $('table.productOverview tbody tr:even').addClass('even');
  
   $('input[name=sa]').bind("click", function() {
      var searchString = $('input[name=q]').val();
      if (searchString != '') {
        gotoSearchPage(searchString);
      }
   });
   
   $('input[name=q]').keydown(function(e) {
     if ($(this).val() != '' && e.keyCode == 13) {
       e.stopPropagation();
       e.preventDefault();
       gotoSearchPage($(this).val());
     }
   });
});

function gotoSearchPage(s) {
  window.location = '/servicemenu/soegeresultater.aspx?search=' + s;
}

