$(document).ready(function() {


  //Help divs tonen
  $("div[@class=help]").hide();

  $("input").hover(function(){
    $(this).next("div[@class=help]").show("fast");
  }, function(){
    $(this).next("div[@class=help]").hide("fast");
  });

  $("select").hover(function(){
    $(this).next("div[@class=help]").show("fast");
  }, function(){
    $(this).next("div[@class=help]").hide("fast");
  });


});