$(document).ready(function() {
	// easy toggle for categories
	$('#triggerCatID').click(function() {
		$(this).toggleClass('focus');
		$('#headerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	$('#triggerCatID2').click(function() {
		$(this).toggleClass('focus2');
		$(".navStripWrapper .inscripcion a").toggleClass('toggleinscripcion');
		$('#headerStrip2').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	$('#triggerCatID3').click(function() {
		$(this).toggleClass('focus3');
		$('#headerStrip3').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	$('#triggerCatID4').click(function() {
		$(this).toggleClass('focus4');
		$('#headerStrip4').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	$('#triggerCatID5').click(function() {
		$(this).toggleClass('focus5');
		$('#headerStrip5').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});	
});