
function ShowText(d) {
HideAll();
StartLogoAjax(d);
// fake delay
setTimeout("ShowItem('"+d+"')",1800);
}
function ShowMeta(d) {
HideMeta();
StartMetaAjax(d);
// fake delay
setTimeout("ShowMetaItem('"+d+"')",1000);
}
function ShowMetaItem(d) {
// show text element
if(d.length < 1) { return; }
document.getElementById(d + "content").style.display = "block";
StopMetaAjax(d);
}
function ShowItem(d) {
HideAll();
// show text element
if(d.length < 1) { return; }
document.getElementById(d + "text").style.display = "block";
StopLogoAjax(d);
}
function StartMetaAjax(d) {
document.getElementById(d + "text").style.display = "block";
document.getElementById(d + "padding").style.display = "block";
document.getElementById(d + "ajax").style.display = "block";
}
function StopMetaAjax(d) {
document.getElementById(d + "ajax").style.display = "none";
}
function StartLogoAjax(d) {
document.getElementById("ajax_logo" + d).style.display = "block";
}
function StopLogoAjax(d) {
document.getElementById("ajax_logo" + d).style.display = "none";
}
