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