jQuery.jFastMenu = function(id){

	$(id).find('ul').find('li').hover(function(){

		clearTimeout($(this).data('jQueryMenu'));
		//$(this).find('ul:first').animate({height:'show'}, 'fast');
		$(this).find('ul:first').show();

	},

	function(){

		var mm = $(this);
		var timer = setTimeout(function(){
			//mm.find('ul:first').animate({height:'hide', opacity:'hide'}, 'slow');
			mm.find('ul:first').hide();
		}, 5);//500
		$(this).data('jQueryMenu', timer);

	});

}
