function dropdown(list){
	$(list).find(">li").find(">ul").css("opacity",1);
	$(list).find(">li")
		.hover(
			function() {
				$(this).find("ul").stop(true, true).slideDown('fast').show();
				$(this).addClass("subhover");
			},
			function() {
				$(this).find("ul").slideUp('slow');
				$(this).removeClass("subhover");
			}
		);
}

