	function displayBlogComments(entryId) {	
		resetOptionsButtons(entryId);
			
		if(!articles[entryId]["commentsSelected"]) {
			document.getElementById('blogArticleOptionsContainer' + entryId).innerHTML = '';
			
			articles[entryId]["commentsSelected"] = true;
			articles[entryId]["mapSelected"] = false;
			articles[entryId]["tagsSelected"] = false;

			document.getElementById("blogArticleCommentsLink" + entryId).className = 'blogArticleOption selected';
			
			var commentsContainer = document.createElement("DIV");
			commentsContainer.id = 'blogEntry' + entryId + 'commentsContainer';
			commentsContainer.className = 'commentsBox';
			
			var addCommentLink = document.createElement("A");
			addCommentLink.className = 'commentAddLink';
			addCommentLink.href = 'JavaScript: articles["' + entryId + '"]["commentsBox"].writeComment();';
			addCommentLink.innerHTML = 'Einen Kommentar schreiben &raquo;';
			
			document.getElementById('blogArticleOptionsContainer' + entryId).appendChild(commentsContainer);
			//document.getElementById('blogArticleOptionsContainer' + entryId).appendChild(addCommentLink);
			
			articles[entryId]["commentsBox"] = new CommentsBoxClass();
			articles[entryId]["commentsBox"].id = 'blogEntry' + entryId + 'commentsContainer';
			articles[entryId]["commentsBox"].name = 'articles["' + entryId + '"]["commentsBox"]';
			articles[entryId]["commentsBox"].maxCount = 12;
			articles[entryId]["commentsBox"].type = 'blogEntry'; // Type of the object that this Comment-Box is attached to
			articles[entryId]["commentsBox"].objectId = entryId; // PublicID of the Object that this Comment-Box is attached to.
			articles[entryId]["commentsBox"].init();
		} else {
			articles[entryId]["commentsSelected"] = false;
			articles[entryId]["commentsBox"] = false;
			document.getElementById("blogArticleCommentsLink" + entryId).className = 'blogArticleOption';
			document.getElementById('blogArticleOptionsContainer' + entryId).innerHTML = '';
		}

		document.getElementById("blogArticleCommentsLink" + entryId).className = 'blogArticleOption selected';
	}

	function mouseOverDisplayCommentsLink(entryId) {
		document.getElementById("blogArticleCommentsLink" + entryId).className = 'blogArticleOption selected';
	}
	
	function mouseOutDisplayCommentsLink(entryId) {
		if(articles[entryId]["commentsSelected"]) {
			document.getElementById("blogArticleCommentsLink" + entryId).className = 'blogArticleOption selected';
		} else {
			document.getElementById("blogArticleCommentsLink" + entryId).className = 'blogArticleOption';		
		}
	}
	
	function displayBlogMap(entryId) {
		resetOptionsButtons(entryId);
			
		if(!articles[entryId]["mapSelected"]) {
			articles[entryId]["commentsSelected"] = false;
			articles[entryId]["mapSelected"] = true;
			articles[entryId]["tagsSelected"] = false;

			document.getElementById("blogArticleMapLink" + entryId).className = 'blogArticleOption selected';
		} else {
			articles[entryId]["mapSelected"] = false;
			document.getElementById("blogArticleMapLink" + entryId).className = 'blogArticleOption';			
		}

		document.getElementById("blogArticleMapLink" + entryId).className = 'blogArticleOption selected';
	}	
	
	function mouseOverDisplayMapLink(entryId) {
		document.getElementById("blogArticleMapLink" + entryId).className = 'blogArticleOption selected';
	}
	
	function mouseOutDisplayMapLink(entryId) {
		if(articles[entryId]["mapSelected"]) {	
			document.getElementById("blogArticleMapLink" + entryId).className = 'blogArticleOption selected';
		} else {
			document.getElementById("blogArticleMapLink" + entryId).className = 'blogArticleOption';		
		}
	}
	
	function displayTags(entryId) {
		resetOptionsButtons(entryId);
			
		if(!articles[entryId]["tagsSelected"]) {
			articles[entryId]["commentsSelected"] = false;
			articles[entryId]["mapSelected"] = false;
			articles[entryId]["tagsSelected"] = true;

			document.getElementById("blogArticleTagsLink" + entryId).className = 'blogArticleOption selected';
		} else {
			articles[entryId]["tagsSelected"] = false;
			document.getElementById("blogArticleTagsLink" + entryId).className = 'blogArticleOption';			
		}

		document.getElementById("blogArticleTagsLink" + entryId).className = 'blogArticleOption selected';
	}		
	
	function mouseOverDisplayTagsLink(entryId) {
		document.getElementById("blogArticleTagsLink" + entryId).className = 'blogArticleOption selected';
	}
	
	function mouseOutDisplayTagsLink(entryId) {
		if(articles[entryId]["tagsSelected"]) {		
			document.getElementById("blogArticleTagsLink" + entryId).className = 'blogArticleOption selected';
		} else {
			document.getElementById("blogArticleTagsLink" + entryId).className = 'blogArticleOption';		
		}
	}	
	
	function resetOptionsButtons(entryId) {
		document.getElementById("blogArticleCommentsLink" + entryId).className = 'blogArticleOption';		
	}
