$(document).ready(function(){
	$("#menu ul.box").addClass(" invisivel");
	$("#menu h3").click(function(){
		$(this).next("ul.box").slideToggle("slow")
		.siblings("ul.box:visible").slideUp("slow");
		$(this).toggleClass("corrente");
		$(this).siblings("#menu h3").removeClass("corrente");
		return false;
	});

$("h1, h2, img,").hover(function () {
      $(this).fadeTo("slow", 0.4)
		},
						function () {
      $(this).fadeTo("slow", 1);
	});
});

