$(document).ready(function() {
  $('div.header-menu li').hover(function() {
    $(this).children('a').addClass('hover') ;
    $(this).children('ul').show() ;
  },function() {
    $(this).children('a').removeClass('hover') ;
    $(this).children('ul').hide() ;
  }) ;
  
  $('#signup-form').submit(function() {
    $.post('/content/newsletter-signup/signup',{'e':$('input[name="email"]').val()}) ;
    $(this).children('#thanks').text('Thank you') ;
    return false ;
  }) ;
}) ;
