// JavaScript Document
	$(document).ready(function(){
							   
		$(".tab_intermenu").toggle(function() {
		$(".submenu_menu").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(".submenu_menu").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});
	
		$(".tab_intermenu1").toggle(function() {
		$(".submenu_menu1").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(".submenu_menu1").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});

	
	$(".tabela1").toggle(function() {
		$(".dados1").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(".dados1").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});
	
		$(".tabela2").toggle(function() {
		$(".dados2").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(".dados2").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});

	$(".tabela3").toggle(function() {
		$(".dados3").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(".dados3").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});


	$(".tabela4").toggle(function() {
		$(".dados4").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(".dados4").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});
	$(".tabela5").toggle(function() {
		$(".dados5").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(".dados5").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});

	$(".tabela6").toggle(function() {
		$(".dados6").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	}, function() {
		$(".dados6").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	});

})

