



	document.observe('dom:loaded', function() {

		if($('gbook_add_container')) {

			$('gbook_add_container').hide();

			new Insertion.Before('gbook_add_container', '<p id="b_gbook_addentry"><a href="#" onclick="newBookEntry(); return false;">Eintrag schreiben &raquo;</a></p>');

		}

	});




	newBookEntry = function() {
		
		$('gbook_add_container').show();
		$('b_gbook_addentry').remove();
		
	}
