﻿// --- Funções para chamada em click
function MontaAtividades(param) {
    ajaxMethod("GetAtividade", ["TipoAtividade", param], ajaxSucceeded, ajaxFailed);
    return false;
}

function HoraDoRecreio() {
    $('#boxMensagem').hide();
    $('#contentEntry').html('<img src="Images/WebSite/Textos/txt_recreio.png" style="margin-left:25px;" />');//O HTML em questão é a imagem que abre incialmente
}

function MonteSuaHistoria() {
    ajaxMethod("GetMontaSuaHistoria", [], ajaxSucceeded, ajaxFailed);
    return false;
}

function ConhecaOsLivros() {
    ajaxMethod("GetConhecaOsLivros", [], ajaxSucceeded, ajaxFailed);
    return false;
}

function MontaPaginas(param) {
    ajaxMethod("GetPaginas", [], ajaxSucceeded, ajaxFailed);
    return false;
}

