jQuery(document).ready(function($) {
  
  $("#newsletter form input").resettable();
  
  $("#subscribe").click(function() {
    $(this).parents("form").submit();
  }).hover(function() {
    $(this).addClass("hover");
  }, function() {
    $(this).removeClass("hover");
  });
  
  $("#page").next("#footer").css("top","120px");
  
});
