$(document).ready(function(){
$('.subMenu').parent().each(function(){
	$(this).mouseenter(function(){
		$(this).children('.subMenu').css('display', 'block');
	}).mouseleave(function(){
		$(this).children('.subMenu').delay(200).stop(true, true).slideUp(100);
	})
})
})

