function AtualizarQtdeItens() {

    var data = ($.browser.msie ? "xml" : "text");
    $.ajax({
        url: "api.aspx?tipo=attsacola",
        dataType: data,
        success: function(xml) {
            $(xml).find('attsacola').each(function() {
                var QtdeItens = $(this).find("QTD_ITENS").text();
                var ValorTotal = $(this).find("VALOR_TOTAL").text();

                $(".cesta-item em").text(QtdeItens);
                $(".cesta-valor em").text(ValorTotal);
                
                if(QtdeItens > 0)
                         $(".cesta-btn").html("<a href='Carrinho.aspx'><img src='Geral/LinxShop/Imagens/btn-ok.jpg'></a>");

            });
        }
    });

    $.ajax({
        url: "api.aspx?tipo=attverificaacesso",
        dataType: data,
        success: function(xml) {
            $(xml).find('attverificaacesso').each(function() {
                var ativo = $(this).find("ATIVO").text();
                var apelido = $(this).find("APELIDO").text();

                if (ativo == "1") {
                    $(".usuario-nome").html( apelido + " <a href=\"Login.aspx?logout=1\" class=\"login-acesso\" title=\"Deslogar do site\">(sair)</a>");
                }
                else {
                    $(".usuario-nome").html("<a href=\"Login.aspx\" class=\"login-acesso\" title=\"Entrar no site\">(entrar) </a>");
                }
            });
        }
    });
	
}
	
jQuery(document).ready(function() {

	//Atualização da qtde de itens que estão no carrinho
	AtualizarQtdeItens();


$(".cat_catalog").find('.divProdutoItem, .divLookItem').each(function(){
		$(this).mouseover(function(){
				$(this).css("border", "1px solid #CDD3C9");
		});

		$(this).mouseout(function(){
				$(this).css("border", "1px solid #fff");
		});	
	});
});

       function link(){
            window.location.href = "carrinho.aspx";
        }

$().ready(function()
	{
	
		$('.chat-online').click(function()
		{
			window.open("geral/linxshop/templates/popup-chat-online.html", "janela1",  "width=465,height=515,scrollbars=NO") 
		});
	});

