$(document).ready(function() {
	$("#menu-office").mouseover (function () {
		$("#submenu-office").show();
		$("#cover-office").show();	
	});
	$("#menu-office").mouseout (function () {
		$("#submenu-office").hide();
		$("#cover-office").hide();
	});
	
	$("#submenu-office > li").mouseover (function () {
		$("#submenu-office").show();
		$("#cover-office").show();
	});
	$("#submenu-office > li").mouseout (function () {
		$("#submenu-office").hide();
		$("#cover-office").hide();
	});
	
	$("#menu-areas").mouseover (function () {
		$("#submenu-areas").show();
		$("#cover-areas").show();
	});
	$("#menu-areas").mouseout (function () {
		$("#submenu-areas").hide();
		$("#cover-areas").hide();
	});
	
	$("#submenu-areas > li").mouseover (function () {
		$("#submenu-areas").show();
		$("#cover-areas").show();
	});
	$("#submenu-areas > li").mouseout (function () {
		$("#submenu-areas").hide();
		$("#cover-areas").hide();
	});
	
	$(".seta").eq(7).addClass("active");
	$(".fechada").eq(7).show();
	$(".seta").click(function(){
		$(this).next(".fechada").slideToggle("slow")
		.siblings(".fechada:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings(".seta").removeClass("active");
	});

});