﻿/**
 * Add body class if right sidebar is present
 *
 * Allow different CSS layout styles depending
 * on whether there needs to be room for a
 * right sidebar 
 */
jQuery(document).ready(function() {
    if ( $('#rightPromo, #rightImages').length )
    {
        $('body').addClass('with-right-sidebar');
    }
});



