$(document).ready(function() {
	// simple toggle for categories
	$('#triggerCatID').click(function() {
		$(this).toggleClass('focus');
		$('.toggleCategories').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
});