$(function(){ 
	$('.all_class').hover(
		function(){
			$(this).children('ul').css({display:'block'});
			$(this).focus().css({});
		},function(){
			$(this).children('ul').css({display:'none'});
			$(this).focus().css({});
		});
	
});


