$(document).ready(function() {
	// easy toggle for About me
	$('#triggerAbout').click(function() {
		$(this).toggleClass('focus');
		$('#navi_about').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	// easy toggle for Categories
	$('#triggerCatID').click(function() {
		$(this).toggleClass('focus');
		$('#headerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
});
