/*
	Edited for Holidesigns version of Gridfocus wp theme.
	Function - toggle multiple menus
	Credit; Peder Sundb¿ and Daniel Tveiten
*/


$(document).ready(function() {

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



