function trocar(pagina){
	$("#paginas").fadeOut();
	$.ajax({
			url: pagina+".php",
			success: function(msg){
			//	alert(msg);
			$("#paginas").html(msg);
			$("#paginas").fadeIn();
		}
	});
}

function projeto(pagina){
	$("#paginas").fadeOut();
	$.ajax({
			url: "projeto.php?id="+pagina,
			success: function(msg){
			//	alert(msg);
			$("#paginas").html(msg);
			$("#paginas").fadeIn();
		}
	});
}


function mostrar(id) {
	 document.getElementById('submenucabanha').style.display = 'none';
	 document.getElementById('submenucavalo').style.display = 'none';
	 document.getElementById('submenumedia').style.display = 'none';
	 	 
	 if(document.getElementById(id).style.display == 'inline') {
		document.getElementById(id).style.display = 'none';
	} 	else {
		document.getElementById(id).style.display = 'inline';
	}
}

$(document).ready(function() {
trocar("home"); 

$('.normal').hover(function() { $(this).removeClass().addClass('selecionado'); }, function() { $(this).removeClass().addClass('normal'); });

});
