jQuery(document).ready(function() {
        // easy toggle for categories
        jQuery('#triggerCatID').click(function() {
//change classes of other buttons
                jQuery('#triggerCatID2').attr('class', '');
                    jQuery('#triggerCatID3').attr('class', '');
                                jQuery(this).toggleClass('focus');
                 jQuery('#headerStrip2').animate({ height: 'hide', opacity: '100'}, 100);
                jQuery('#headerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
                return false;
        });
        jQuery('#triggerCatID2').click(function() {
                    jQuery('#triggerCatID').attr('class', '');
                    jQuery('#triggerCatID3').attr('class', '');
                jQuery(this).toggleClass('focus');
                jQuery('#footerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
                return false;
        });
        jQuery('#triggerCatID3').click(function() {
                    jQuery('#triggerCatID').attr('class', '');
                    jQuery('#triggerCatID2').attr('class', '');
                    jQuery(this).toggleClass('focus');
                jQuery('#headerStrip2').animate({ height: 'toggle', opacity: '100'}, 100);
                jQuery('#headerStrip').animate({ height: 'hide', opacity: '100'}, 100);
                return false;
        });
});