$(document).ready(function()
{
	$(".nomeMenu").click(function()
	{
		var menuAtual = $(this).parent().attr("id");
		
		$(".itensMenu").each(function()
		{
			if ($(this).parent().attr("id") != menuAtual)
			{
				$(this).hide("slow");
			}
		});
		
		$(this).parent().children(".itensMenu").toggle("slow");
	});	
	
});
