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