$(function(){
$('#ConteudoMenuInstitucional ul#SubMenuProdutos').hide() /* Declarando para o menu começar fechado*/ 
$("#ConteudoMenuInstitucional li#ItemProdutosInstitucional").hover(function(){
	$(this).children("ul#SubMenuProdutos").css('display','block');
	$('#LinkProdutoInstitucional').addClass('HoverProdutosInstitucional');
},function(){
	$(this).children("ul#SubMenuProdutos").css('display','none');
	$('#LinkProdutoInstitucional').removeClass('HoverProdutosInstitucional');
})

});