// JavaScript Document
	
	function ativaEfeitoOver() {
		// set opacity to nill on page load
		$("img.img_menu_servicos").css("opacity","1");
		// on mouse over
		$("img.img_menu_servicos").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 0.7
			}, "fast");
		},
		// on mouse out
		function () {
			$(this).stop().animate({
				opacity: 1
			}, "fast");
		});	
	}	
	
	
	function ativaMenu() {
		$('.menu ul > li > a').click(function(){ 
			$('.menu ul > li > a').removeClass("ativado");		
			$(this).addClass("ativado");						
		}); 
	}

	