//Transição entre as banners da pagina de Sobre
$(document).ready(function(){
	$('#about_nav #empresa').click(function(){
		$("#top_about").fadeOut(500);
		$("#top_middle_about").fadeOut(500);
		$("#middle_about").fadeOut(500);
		$("#bottom_about").fadeOut(500);
		
		$("#top_about_empresa").fadeIn(500);
		$("#middle_about_empresa").fadeIn(500);
		$("#bottom_about_empresa").fadeIn(500);
		$("#fake_footer").fadeIn(500);
	});
	
	$('#about_nav #compromisso').click(function(){
		
		$("#top_about_empresa").fadeOut(500);
		$("#middle_about_empresa").fadeOut(500);
		$("#bottom_about_empresa").fadeOut(500);
		$("#fake_footer").fadeOut(500)
		
		$("#top_about").fadeIn(500);
		$("#top_middle_about").fadeIn(500);
		$("#middle_about").fadeIn(500);
		$("#bottom_about").fadeIn(500);
		
	});
	
	
});
