//  ==================================================================================================
//  Function    :   OverrideInnerDiv
//
//  Description :   Overrides the main-inner div ID so that the alignment is flush to the right column
//                  Only do this for certain pages. (Determined by the ContainerID parameter)
//  ==================================================================================================
function OverrideInnerDiv(sContainerName) 
{
    switch (sContainerName) 
    {
        case 'shop_patient_support':
        case 'shop_schools':
        case 'shop_clothing':
        case 'shop_corporate' :
        case 'shop_hats' :
        case 'shop_sunglasses' : 
        case 'shop_landing_sunscreen' :
        {
            document.getElementById('Main-Inner').style.marginRight = '175px'; 
        }
    }         
}

