$(document).ready(function() {
  $('.menuItem').bind('mouseenter', function(event) {
    var pos=$(this).get(0).getBoundingClientRect();
    if($('.subMenuItems', this)) {
      $('.subMenuItems', this).css('left', ($(document).scrollLeft()+pos.left)+'px').css('top', ($(document).scrollTop()+pos.bottom-3)+'px').slideDown(0);
//      $('.subMenuItems', this).css('left', (event.pageX)+'px').css('top', (event.pageY)+'px').slideDown(0);
    }
    $(this).children('a').css('font-weight', 'bolder');
    //$(this).children('a').css('color', '#0070A3');
  });
  $('.menuItem').bind('mouseleave', function() {
    if($('.subMenuItems', this)) {
      $('.subMenuItems', this).slideUp(0);
    }
    $(this).children('a').css('font-weight', '');
    //$(this).children('a').css('color', '');
  });
});
