

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

}
