$(document).ready(function(){
	$(".hover").toggle(
	function(){
		$(this).css({"color":"#046330"});
	},function(){
		$(this).css({"color":"#000000"});
	});	
});


function mostraDiv( div )
{
	obj = document.getElementById(div);
	contatos = new Array("contato1", "contato2", "contato3", "contato4", "contato5", "contato6");
	
	for( i = 1; i <= contatos.length; i++ )
	{
		atualDiv = "contato" + i;
		if( atualDiv == obj.id )
		{
			if( obj.style.display == 'none' )
			{
				obj.style.display = 'block';
			}
			else
			{
				if( obj.style.display == 'block' ){
					obj.style.display = 'none';
				}
			}
		}
		else
		{
			mudar = document.getElementById( atualDiv );
			mudar.style.display = 'none';
		}
	}
}
