jQuery.jFastMenu = function(id){

	$(id + ' ul li').hover(function(){
		$(this).find('ul:first').stop('clearQueue', 'gotoEnd').animate({height:'show'}, 'fast');
	},
	function(){
		$(this).find('ul:first').stop('clearQueue', 'gotoEnd').animate({height:'hide', opacity:'hide'}, 'fast');
	});

}
