Global.js
Naar navigatie springen
var anunt_list var nr_anunturi var anunt_curent var anunt_timer, hint_timer;
function ch_hints() {
var hint_nr=Math.round(Math.random()*45); $("#grepo_nl_hints").slideUp("slow"); hint_nr++; $.get("/index.php",{title:"Overleg:FAQ",action:"raw",section:hint_nr}, function(response,succes) { if (succes) { resp= "" + response $.get("/api.php",{action:"parse",text:resp,format:"xml"},function(xresp,succ) { if (succ) { $("#grepo_nl_hints").html(xresp.getElementsByTagName("text")[0].childNodes[0].nodeValue); } },"xml"); };
},"html");
$("#grepo_nl_hints").slideDown("slow");
}
function ch_anunt() {
$(anunt_list[anunt_curent]).fadeOut("normal",function() { anunt_curent++; if (anunt_curent >= nr_anunturi) { anunt_curent=0; } $(anunt_list[anunt_curent]).fadeIn(); });
}
if ((wgTitle == "Global.js") && (wgAction != "edit") && (wgAction != "history") && (wgAction != "historysubmit")) {
$("#bodyContent").html("
Deze pagina is gesloten!
Team <a href='http://nl.grepolis.com'>Grepolis.nl</a>!
");
}
});