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