//alter the transparent background
/*
function al_bg(elid, bg) {
    var el = document.getElementById(elid);
    var path = "includes/templates/101_new/images/home/";
    var bg0 = "contentColum.png";
    var bg1 = "contentColum_t.png";
    if (bg == "1") {
        el.style.backgroundImage = "url(" + path + bg1 + ")";
    } else {
        el.style.backgroundImage = "url(" + path + bg0 + ")";
    }
}
*/
