﻿$(document).ready(function() {
	initMenu();
	initMenuProdutos();
	$(".gridSemDados").parent().parent().toggleClass("gridVazia");
});

function initMenu() {
		$('.DivAccor').hide();
		$('.DivAccor:first').show();
		$('.lnkAccor').click(
		function() {
		  var checkElement = $(this).next();
		  if((checkElement.is('.DivAccor')) && (checkElement.is(':visible'))) {
			return false;
			}
		  if((checkElement.is('.DivAccor')) && (!checkElement.is(':visible'))) {
			$('.DivAccor:visible').slideUp('normal');
			checkElement.slideDown('normal');
			return false;
			}
		  }
		);
	}
	
	function initMenuProdutos() {
		$('.DivAccorProdutos').hide();
		//$('.DivAccorProdutos:first').show();
		$('.lnkAccorProdutos').click(
		function() {
		  var checkElement = $(this).next();
		  if((checkElement.is('.DivAccorProdutos')) && (checkElement.is(':visible'))) {
			return false;
			}
		  if((checkElement.is('.DivAccorProdutos')) && (!checkElement.is(':visible'))) {
			$('.DivAccorProdutos:visible').slideUp('normal');
			checkElement.slideDown('normal');
			return false;
			}
		  }
		);
	}
