// 
$().ready(function (){
	// Mascara o telefone
	$('#telefone').mask('(99) 9999-9999');
	// Valida o form de contato
	$('#frmContact').validate({
		rules: {
			nome: "required",
			email: {
				required : true,
				email : true
			},
			assunto: "required",
			mensagem: "required"
		}
	});
	// Colore as linhas da tabela ao passar o mouse
	trs = $('.tbl_produtos tbody tr');
	trs.each(function ()
	{
		$(this).hover(
			function()
			{
				$(this).toggleClass("tr_hover");
			},
			function()
			{
				$(this).toggleClass("tr_hover");
			}
		)
	})
})
// 
total_divs = 3
// Mostra uma categoria na pagina de produtos
function show_cat(id) {
	for(i=1; i<=total_divs; i++)
		$('#div_'+i).css('display', 'none');
	$('#'+id).show('slow');
}
// Esconde as outras categorias ao carregar a pagina
$().ready(function (){
	for(i=2; i<=total_divs; i++)
		$('#div_'+i).css('display', 'none');
})
// Avisa que recurso estara disponivel em breve
function emBreve(){
	alert('Em breve...');
}
