﻿(function($) {
    $(function() {
        var rootURL = document.location.protocol + "//" + document.location.host;
        $("input").removeAttr('style');
        $(".logoCasaPresser").click(function() {
            document.location = rootURL;
        });
        $(".menuProdutos").click(function() {
            document.location = rootURL + "/Produto.aspx?CategoriaId=3";
        });
        $(".menuContato").click(function() {
            document.location = rootURL + "/Contato.aspx";
        });
        $(".menuLocalizacao").click(function() {
            document.location = rootURL + "/Localizacao.aspx";
        });
        $("#acessoRestrito").click(function() {
            document.location = rootURL + "/Produto/";
        });
    });
})(jQuery);

