jQuery(document).ready(function() {
	// easy toggle for categories
	jQuery('#triggerCatID1').click(function() {
		jQuery(this).toggleClass('focus');
		jQuery('#partei').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
jQuery('#triggerCatID2').click(function() {
		jQuery(this).toggleClass('focus');
		jQuery('#vorort').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
jQuery('#triggerCatID3').click(function() {
		jQuery(this).toggleClass('focus');
		jQuery('#presse').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
	jQuery('#triggerCatID4').click(function() {
		jQuery(this).toggleClass('focus');
		jQuery('#positionen').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
jQuery('#triggerCatID5').click(function() {
		jQuery(this).toggleClass('focus');
		jQuery('#kontakt').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});

jQuery('#triggerCatID7').click(function() {
		jQuery(this).toggleClass('focus');
		jQuery('#footerStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		return false;
	});
});