$(function(){
	$('div#enderecosTelefonesHome div').click(function(){
		$(this).children('ul').fadeIn();
	});
	$('div#enderecosTelefonesHome div ul').hover(function(){
		$(this).show();
	}, function(){
		$(this).fadeOut();
	});
});