$(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('focus');
		$('#footerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	
	/* Homepage Comments */
	$('.home-respond .comment').bind('click', 
		function(event) {
			//alert('hi');
			if ( ! $(this).is('.active') ) {
				$(this).addClass('active');
				$(this).parent().find('.comment-additional').show();
				$(this).animate({ height: '130px'}, 100);
				//$(this).value('');
				$(this).html('');
			}
		}
	);
	
});
