		$().ready(function()
		{
			$("#bookmarks li a").click(function()
			{
				$("#bookmarks .active").removeClass("active");
				$(this).parent().addClass("active");

				var element_index = $("#bookmarks a").index(this);

				$("#content div:visible").hide();
				$("#content div").eq(element_index).show();

				return false;
			});
		});