$.jFastMenu = function(id){
	
	$(id + ' ul li').hover(function(){
		//$(this).find('ul:first').animate({height:'show'}, 'slow');
		$(this).find('ul:first li:last').addClass("last");
		//$(this).find('ul:first').slideDown('fast').fadeIn('fast');
		
		if ( $.browser.msie ){		
			$(this).find('ul:first').show();
		}else{
			$(this).find('ul:first').slideDown(100).fadeIn(150);
		}
		
	},
	function(){
		//$(this).find('ul:first').animate({height:'hide', opacity:'hide'}, 'slow');
		//$(this).find('ul:first').fadeOut('fast');
		
		if ( $.browser.msie ){
			$(this).find('ul:first').hide();
		}else{
			$(this).find('ul:first').fadeOut(150);
		}
		
	});

}
