jQuery(document).ready(function($){
//menu
  $(".menuitem").hover(function(){
	$(this).closest('.menu').children('.submenubar').stop(true, true).slideDown()
	},function(){
	$(this).closest('.menu').children('.submenubar').stop(true,true).delay(50).slideUp()
	});
	
  $(".submenubar").hover(function(){
	$(this).show().stop(true,true)
	},function(){
	$(this).delay(1500).slideUp()
  });
});
