$(document).ready(function() {
  $(function(){
	//Main submenus
	$(".menuitem").hover(
      function () {
		var submenu = $(this).children("span.submenu");
		submenu.css({
			position:'absolute',
			top: $(this).offset().top + $(this).height() + 'px',
			left: ($(this).offset().left -2) + 'px',
			width: '200px',
			zIndex:1337
		});
		submenu.stop(true, true).slideDown(300);
      },
      function () {
        $(this).children("span.submenu").stop(true, true).slideUp(300);
      }
    );
    //Second inner submenu
    $(".submenuitem").hover(
      function () {
		var submenu = $(this).children("span.submenuslide");
		submenu.css({
			position:'absolute',
			top: $(this).parent().height() + $(this).offset().bottom + 'px',
			left: $(this).width() + 'px',
			width: '200px',
			zIndex:13337
		});
		submenu.stop(true, true).toggle('slide');
      },
      function () {
        $(this).children("span.submenuslide").stop(true, true).toggle('slide');
      }
    );
    
  });
});
