$(document).ready(function(){
		$("div#index2").hide();
		$("div#e1").show();
		$("div#e2").hide();
		$("div#e3").hide();
		$("div#e4").hide();
		$("div#e5").hide();
		$("div#e6").hide();
		$("div#e7").hide();
		$("div#e8").hide();
		$("div#e9").hide();

		
	$("a#mais").click(function(){
		$("div#index2").show();
		$("div#index1").hide();
		$("div#palavra").hide();
		$("div#noticias").hide();
						
	});
	
	$("a#voltar").click(function(){
		$("div#index2").hide();
		$("div#index1").show();
		$("div#palavra").show();
		$("div#noticias").show();
						
	});
	
	
	
	});
