$(document).ready(function(){   

  
  $('form fieldset p small').addClass("hidden").css({"z-index":"200"});

  $('form fieldset p input, form fieldset p textarea').focus(
    function () {
      $(this).addClass("focus");
      $(this).parent().children('small').addClass("see");
      $(this).parent().children('small').fadeTo("fast",1);
    }
  );

  $('form fieldset p input, form fieldset p textarea').blur(
    function () {
      $(this).removeClass("focus");
      $("form fieldset p").children('small').css({"opacity":"0"});
      $(this).parent().children('small').removeClass("see");
    }
  );

  $('form input[type=submit]').hover(
    function() { $(this).addClass("hover"); },
    function() { $(this).removeClass("hover"); }
  );

  $("#products li").hover(
    function() { $(this).addClass("hover"); },
    function() { $(this).removeClass("hover"); }
  );
  $("#products li").click(function() {
    var href = $(this).find("a").attr("href")
    window.location.assign(href);
  });

});
