$("document").ready(function(){
  $("td.productlistitem").hover(function(){
    $(this).parent().addClass("productlistitemhover");
  }, function(){
    $(this).parent().removeClass("productlistitemhover");
  });
  $("td.reportlistitem").hover(function(){
    $(this).parent().addClass("reportlistitemhover");
  }, function(){
    $(this).parent().removeClass("reportlistitemhover");
  });

  $("input.moneyinput").numeric();

  $("input[@name=searchtext]").keydown(function(e){
    var e = (window.event ? window.event : e);

    if (e.keyCode == 13) {
      $("#searchform").submit();
    }
  });
});
