$(document).ready(function() {
	// easy toggle for categories
	$('#triggerNavWhy').click(function() {
		$(this).toggleClass('focus');
		$('#headerStripWhy').animate({ height: 'toggle', opacity: '100'}, 200);
		return false;
	});
	$('#triggerNavPress').click(function() {
		$(this).toggleClass('focus');
		$('#headerStripPress').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	$('#triggerNavBlog').click(function() {
		$(this).toggleClass('focus');
		$('#headerStripBlog').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
});