$(document).ready(function() {
	// easy toggle for categories
	$('#trigger1').click(function() {
		$(this).toggleClass('focus');
		$('#trigger2').removeClass('focus');
		$('#headerStrip2').animate({ height: 'hide', opacity: '100'}, 100);
		$('#headerStrip1').animate({ height: 'toggle', opacity: '100'}, 100);

		return false;
	});
        $('#trigger2').click(function() {
		$(this).toggleClass('focus');
		$('#trigger1').removeClass('focus');
		$('#headerStrip1').animate({ height: 'hide', opacity: '100'}, 100);
		$('#headerStrip2').animate({ height: 'toggle', opacity: '100'}, 100);

		return false;
	});
        $('#trigger3').click(function() {
		$(this).toggleClass('focus');
		$('#headerStrip3').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	$('#triggerCatID2').click(function() {
		$(this).toggleClass('focus');
		$('#footerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
});