
function showBlogEntry(trigger, id)  {
	contentId = 'blog_content_' + id;
	contentElement = $('blog_content_' + id);
	if(contentElement.style.display == 'none')  {
		trigger.className = 'blog_more blog_more_active'
		trigger.innerHTML = '<div class="blog_more_inner">schlie&szlig;en</div>';
		new Effect.BlindDown(contentElement);
	}
	else  {
		trigger.className = 'blog_more blog_more_inactive'
		trigger.innerHTML = '<div class="blog_more_inner">weiterlesen</div>';
		new Effect.BlindUp(contentElement);
	}
}

function showBlogCategory(trigger, id)  {
	contentId = 'blog_catlist_' + id;
	contentElement = $('blog_catlist_' + id);
	if(contentElement.style.display == 'none')  {
		trigger.className = 'blog_category blog_category_active'
		new Effect.BlindDown(contentElement);
	}
	else  {
		trigger.className = 'blog_category blog_category_inactive'
		new Effect.BlindUp(contentElement);
	}
}
