try {
    var psdivs = document.getElementsByTagName('div');
    for (var i=0; i<psdivs.length; i++) {
        if (psdivs[i].id == 'pepperstation_footer_credit') {
            psdivs[i].innerHTML = "<div style=\"margin:5px; width:350px; text-align:center; \">" +
                            "built by <a href=\"http://pepperstation.com\" target=\"pepperstation\">pepperstation.com</a> - power up your website" +
                            " </div>";
            psdivs[i].style.display = '';
        }
        if (psdivs[i].id == 'pepperstation_footer_credit_power') {
            psdivs[i].innerHTML = "<div style=\"margin:10px;margin-top:15px; width:380px; text-align:center; \">" +
                            "<a href=\"http://pepperstation.com\" target=\"pepperstation\"><img src=\"http://pepperstation.com/graphics/site/icons/powerup_21.gif\" width=\"21\" alt=\"built by PepperStation.com\" width=\"21\" border=\"0\" style=\"margin-right:5px;vertical-align:-25%;\"></a>" +
                            "built&nbsp;by&nbsp;<a href=\"http://pepperstation.com\" target=\"pepperstation\">pepperstation.com</a>&nbsp;-&nbsp;power&nbsp;up&nbsp;your&nbsp;website" +
                            " </div>";
            psdivs[i].style.display = '';
        }
        if (psdivs[i].id == 'pepperstation_footer_credit_spirit') {
            psdivs[i].innerHTML = "<div style=\"margin:5px; width:350px; text-align:center; \">" +
                            "Powered by Spirit, a product of <a href=\"http://pepperstation.com\" target=\"pepperstation\">PepperStation.com</a>" +
                            " </div>";
            psdivs[i].style.display = '';
        }
        if (psdivs[i].id == 'pepperstation_footer_credit_recordit') {
            psdivs[i].innerHTML = "<div style=\"margin:5px; width:350px; text-align:center; \">" +
                            "form powered by Recordit, a product of <a href=\"http://pepperstation.com\" target=\"pepperstation\">PepperStation.com</a>" +
                            " </div>";
            psdivs[i].style.display = '';
        }
    }
} catch(e) {}

