$(document).ready(function() {
  $('div.menu-area > div > ul > li').hover(function() {
    // li is being hovered.
    $(this).children('ul').show() ;
    if ($(this).children('ul').length > 0) {
      $(this).children('a').addClass('hovered-menu') ;
    } else {
      $(this).children('a').addClass('hovered') ;
    }
  },function() {
    // not hovering any more.
    $(this).children('ul').hide() ;
    $(this).children('a').removeClass('hovered') ;
    $(this).children('a').removeClass('hovered-menu') ;
  }) ;
  
  $('#news-sub').click(function(e) {
    $.post('/ajax/post-newsletter',{'e':$('input[name="newsletter-subscribe"]').val()}, function() {
      $('#subscribe-div').html('<p>Thank you, your request has been sent to Chelmsford Training Services</p>') ;  
    }) ;
    e.stopPropagation() ;
  });
}) ;

