jQuery(function ($) {

$(document).ready(function() {
	// easy toggle for categories
	$('ul.nav a').click(function(){
	  var $thisNav = $('#' + $(this).attr('id').replace('trigger', 'nav'));
    
    $('a', $(this).parent().siblings()).removeClass('focus');
    $(this).toggleClass('focus');
    
    $thisNav.siblings('div').slideUp(100);
    $thisNav.animate({ height: 'toggle', opacity: '100'}, 100);
    
	});
	
	/*
	$('#triggerCatID').click(function() {
		$(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;
	});
	*/
});
});
