function activateTab(tab)
{
	if (tab == 'firstBookmark') {
		document.getElementById('firstBookmark').className = 'active';
		// $('#firstBookmarkLink').replaceWith('<strong></strong>');
    document.getElementById('firstBookmarkDescription').style.display = '';

        document.getElementById('secondBookmark').className = 'none';
        // $('#secondBookmarkLink').replaceWith('<a></a>');
        document.getElementById('secondBookmarkDescription').style.display = 'none';

        document.getElementById('thirdBookmark').className = 'none';
        // $('#thirdBookmarkLink').replaceWith('<a></a>');
        document.getElementById('thirdBookmarkDescription').style.display = 'none';
	}

	if (tab == 'secondBookmark') {
		document.getElementById('firstBookmark').className = 'none';
        // $('#firstBookmarkLink').replaceWith('<a></a>');
        document.getElementById('firstBookmarkDescription').style.display = 'none';

		document.getElementById('secondBookmark').className = 'active';
        // $('#secondBookmarkLink').replaceWith('<strong></strong>');
        document.getElementById('secondBookmarkDescription').style.display = '';

        document.getElementById('thirdBookmark').className = 'none';
        // $('#thirdBookmarkLink').replaceWith('<a></a>');
        document.getElementById('thirdBookmarkDescription').style.display = 'none';
	}

	if (tab == 'thirdBookmark') {
		document.getElementById('firstBookmark').className = 'none';
        // $('#firstBookmarkLink').replaceWith('<a></a>');
        document.getElementById('firstBookmarkDescription').style.display = 'none';

		document.getElementById('secondBookmark').className = 'none';
        // $('#secondBookmarkLink').replaceWith('<a></a>');
        document.getElementById('secondBookmarkDescription').style.display = 'none';

        document.getElementById('thirdBookmark').className = 'active';
        // $('#thirdBookmarkLink').replaceWith('<strong></strong>');
        document.getElementById('thirdBookmarkDescription').style.display = '';
	}
}
