$(document).ready(function() {
  var overOuts = $('li.overout');
  
  overOuts.mouseover(
    function() {
      $(this).siblings().removeClass('mouseover');
      $(this).addClass('mouseover');
      var smCont = $('#subMenuContainer');
      smCont.children().html($(this).find('ul').html());
      smCont.show();
      smCont.css({'left': $(this).offset().left, 'top': $(this).offset().top + 55});
    }
  );
  
  $('#subMenuContainer').mouseleave(
    function() {
      $(this).hide();
      overOuts.removeClass('mouseover');
    }
  );
});

