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