//Função do Menu - Topo

$(document).ready(function() {

$("ul#topnav li").hover(function() { //Hover over event on list item
	$(document).find("li.ativo").css({ 'background' : 'none'});
	$('li').find("span.ativo").hide();
	$(this).css({ 'background' : '#FFF url(img/topnav_active.png) repeat-x'}); //Add background color + image on hovered list item
	$(this).find("span").show(); //Show the subnav
} , function() { //on hover out...
	$(this).css({ 'background' : 'none'}); //Ditch the background
	$(this).find("span").hide(); //Hide the subnav
	$(document).find("li.ativo").css({ 'background' : '#FFF url(img/topnav_active.png) repeat-x'});
	$('li').find("span.ativo").show();
});

});




//Função do Menu - Lateral

$(document).ready(function(){
	  $('#menu1').hide();
          $('#menu2').hide();
          $('#menu3').hide();
	  $('#conteudo1').hide();
          $('#conteudo2').hide();

      $('a#exibir1').click(function(){
		$('#conteudo1').show('slow');
                $('#conteudo2').hide('slow');

      });

      $('a#exibir2').click(function(){
                $('#conteudo2').show('slow');
                $('#conteudo1').hide('slow');

      });

      $('a#ocultar1').click(function(){
   		$('#conteudo1').hide('slow');
      })

      $('a#ocultar2').click(function(){
                $('#conteudo2').hide('slow');
      })


      $('div#exibir_menu1').click(function(){
		$('#menu1').show('slow');
                $('#menu2').hide('slow');
                $('#menu3').hide('slow');
      });

      $('div#exibir_menu2').click(function(){
		$('#menu1').hide('slow');
                $('#menu2').show('slow');
                $('#menu3').hide('slow');
      });

      $('div#exibir_menu3').click(function(){
		$('#menu1').hide('slow');
                $('#menu2').hide('slow');
                $('#menu3').show('slow');
      });

});


