$(document).ready(function(){
	$('.bt-sub .submenu').css('display','none');
	
	// Nav
	$('.bt-sub').hover(
		function(){
			$(this).children('.submenu').fadeIn(700);
		},
		function(){
			$(this).children('.submenu').css('display','none');
		}
	);
	/*
	$('.submenu').hover(
		function(){
			$(this).parent('.bt-sub').addClass('ativo');
		},
		function(){
			$(this).parent('.bt-sub').removeClass('ativo');
		}
	); */



                

});

function is_numeric(valor){
	newValor = parseInt(valor);
	if(!isNaN(newValor)) return true;
	else return false;
}


function validarBusca(){

    if($('#BuscaProdutoNome').val().length == 0){
        alert('Digite a palavra a ser buscada');
        return false;
    }

    return true;
}
