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