/*
jQuery.jFastMenu = function(id){

	$(id + ' ul li').mouseover(function(){
		$(this).find('ul:first').css('display', 'block');
	}).mouseout(function(){
		$(this).find('ul:first').css('display', 'none');
	});

}
*/
jQuery.jFastMenu = function(id){

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

}