$( function(){

    // inicializando o placeholder
    $(".placeholder").placeholder({
       color: '#000',
       colorHolder: '#666'
    });

    // CENTRALIZAÇÃO DAS IMAGENS DOS PRODUTOS
    $('img.centraliza').centralizaImg();

    // MAPA DO SITE
    $(document).ready(function(){
        $('#mapa a').click(function(){
            $('#mapa-container').toggle();
            $.scrollTo('#mapa-container', 900);
            return false;
        });
    });

    // LIGHTBOX
    $('a.lightbox').lightBox({
        fixedNavigation:true,
        imageLoading: root_path + '/images/lightbox-ico-loading.gif',
    	imageBtnClose: root_path + '/images/lightbox-btn-close.gif',
        imageBtnPrev: root_path + '/images/lightbox-btn-prev.gif',
        imageBtnNext: root_path + '/images/lightbox-btn-next.gif'
    });

    // VALIDADOR DE FORMULARIOS
    $('form.validacao').validationEngine();

    // MASCARAS DE FORMULARIO
    $("input.tel-mask").mask('(99) 9999-9999');

    // BOTAO DE ORCAMENTO
    $("#btnOrcamento").click(function(){
        //if ($("#especificacao").val() != ''){
        //}else {
        //    alert("Selecione a especificação do produto.");
        //}
        
        if ($("#qtdOrcamento").val() != ''){
            document.frmProduto.submit();
            //document.location = root_path + "/orcamento/add/" + $("#qtdOrcamento").attr('rel') + "/" + $("#qtdOrcamento").val() + "/" + $("#especificacao").val();
        }else {
            alert("Preencha a quantidade desejada.");
        }
        
    })

});
