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