﻿/// <reference path="../JQuery/jquery-1.4.1-vsdoc.js" />

// Projeto : WallPapers
// Conteudo: Pagina WallPapers
// Autor   : Bruno de Oliveira
// Data    : 20/03/2011
//__________________________________________________________________

var TituloWallPapers = "WallPapers";
var cont = 0;

jQuery(document).ready(function () {

    IniciarTela();

});

function InserirLogDownload(obj) {

    $.ajax({
        async: false,
        cache: false,
        url: HandlerWallPapers,
        data: { acao: "InserirLogDownload", img: obj.href, rdn:Math.random() },
        success: function (retorno) {
            //if (retorno != "0")
                //jAlert(retorno, TituloWallPapers);
        }
    });
}

function IniciarTela() {

    $("#MainContent_chkCategoria input[type=checkbox]").click(function () {

        if (this.checked == true) {
            cont++;

            if (cont > 5) {
                jAlert("Selecione apenas 5 categorias.", "WallPapers");
                cont--;
                return false;
            }
        }
        else
            cont--;
        return true;
    });

}
