

$(document).ready(function(){

	$('ul#produtos li h3').click(function(){
		
		$('ul#produtos li h3').removeClass('active');
		$('ul#produtos li h3').addClass('inactive');
		$('ul#produtos li .produto-content').slideUp('slow');
		$(".subactive").next().next().slideUp('slow');
		$(this).addClass('active');
		$("h3").each(function(){
		
			if ($(this).hasClass("active") == true){
				$(this).next().slideDown('slow');
			
			}
		
		})
		
		//$(this).parent().find('.produto-content:first').slideDown('slow');
		
	});
	
	$("h2").click(function(){
		$("h2").removeClass('subactive');
		$('ul#produtos li h2').parent().find('ul').slideUp('slow');
		$(this).addClass('subactive');
		$("h2").each(function(){
		
			if($(this).hasClass('subactive') == true){
				$(this).next().slideDown('slow');
				//alert($(this).next().html())
			}
		
		})
		//$(this).next().next().find('ul:first').slideUp('slow');
	})

});




function validaContato(){

	if ($("#nome").val() == ''){
	
		alert('Informe seu nome!');
		$("#nome").focus();
		return false;
	
	}

	if ($("#email").val() == ''){
	
		alert('Informe seu E-Mail!');
		$("#email").focus();
		return false;
	
	}

	if ($("#assunto").val() == ''){
	
		alert('Informe o Assunto!');
		$("#assunto").focus();
		return false;
	
	}

	if ($("#mensagem").val() == ''){
	
		alert('Digite sua mensagem!');
		$("#mensagem").focus();
		return false;
	
	}
	
	return true;

}