    $(function () {

	

		$('.menufooter .primo').hover(
			function(){ 
				$(this).children('.sub').each(function(){
					
					$(this).show();
					$(this).children('li').hover(
						function(){
							$(this).find('.sub2').show();
						},
						function(){
							$(this).find('.sub2').hide();
						}
					);
				 });
			},
			function(){	$(this).children('.sub').hide();}
		);
		
		
    });

$(document).ready(function(){  

   $(".menufooter li").hover(  
     function(){  
       $(this).children('ul:first:hidden').css({visibility: "visible",display:'block'});  
     },  
     function(){  
       $(this).children('ul:first:visible').css({visibility: "hidden",display:'none'});  
     }  
   );  
 }); 