function HomeBgCustomTable() {
    switch (getQuerystring('mod', 'other')) {

        case 'other':
            {
                break;
            }
        case 'GenComProductCatalog':
            {

            }
        case 'Core+Pages':
            {

            }
        case 'Contact+Form':
            {

            }


        default:
            {
                ChangeBackgroundGeneric();
                break;
            }
    }

}



function ChangeBackgroundGeneric() {

    var html = '<div class="Custom_HomeBg"><div class="Custom_Body">' + $(".HomeBg:first").html() + '</div></div>'
    //NOTE: CHANGE TO THIS METHOD TO RESOLVE ISSUE WITH 'FIREFOX BUG: wyciwyg http://en.wikipedia.org/wiki/WYCIWYG'
    $(".HomeBg:first").removeAttr("bgColor").removeAttr("background")[0].innerHTML = html;
    //$(".HomeBg:first").removeAttr("bgColor").removeAttr("background").html(html);
}

$(document).ready(
function() {
    HomeBgCustomTable()
});
