jQuery(document).ready(function() {
	jQuery('#triggerArticles').click(function() {
		jQuery('#triggerBlogs').attr('class', '');
		jQuery(this).toggleClass('focuson');
		jQuery('#articleStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		jQuery('#blogStrip').animate({ height: 'hide', opacity: '100'}, 100);

		return false;
	});
	jQuery('#triggerBlogs').click(function() {
		jQuery('#triggerArticles').attr('class', '');
		jQuery(this).toggleClass('focuson');
		jQuery('#blogStrip').animate({ height: 'toggle', opacity: '100'}, 100);
		jQuery('#articleStrip').animate({ height: 'hide', opacity: '100'}, 100);
		return false;
	});
});

