jQuery(document).ready(function() {
	// easy toggle for categories
	jQuery('#triggerCatID').click(function() {
		jQuery(this).toggleClass('focus');
		jQuery('#headerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	jQuery('#triggerCatID2').click(function() {
		jQuery(this).toggleClass('focus');
		jQuery('#footerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
    });
    jQuery('#triggerSocialBook').click(function() {
        jQuery(this).toggleClass('focus');
        jQuery('#socialHeaderStrip').animate({ height: 'toggle', opacity: '100' }, 100);
        return false;
    });
    jQuery('#triggerSocialBook2').click(function() {
        jQuery(this).toggleClass('focus');
        jQuery('#socialFooterStrip').animate({ height: 'toggle', opacity: '100' }, 100);
        return false;
    });
});