$(document).ready(function() {
	// easy toggle for categories
	$('#triggerCatID').click(function() {
		$(this).toggleClass('focus');
		$('#headerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	
	$('#triggerPagID').click(function() {
		$(this).toggleClass('focus');
		$('#headerStrip2').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	
	$('#triggerCatID2').click(function() {
		$(this).toggleClass('focus');
		$('#footerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	//top of page
	$('a.topOfPage').click(function(){
		$.scrollTo( 0, 500);
		return false;
	});
	
});