function addParam(ids) {
    for (var i = 0, id = null, el = null, links = []; (id = ids[i]); i++) {
        el = document.getElementById(id);
        if (el === null) continue;

        for (var j = 0, link = null; (link = el.getElementsByTagName('a')[j]); j++) {
            link.href += (link.href.indexOf('?') >= 0 ? '&' : '?') + 'icid=' + id;
        }
    }
}

window.onload = function() { addParam(['news-and-pressreleases2', 'feature-stories2', 'contact2', 'about-summer2', 'banner-summer2', 'footer']) };
