		$().ready(function()
		{
			$("#bookmarks li a").click(function()
			{
				$("#bookmarks .active").removeClass("active");
				$(this).parent().addClass("active");

				var classname = $(this).attr("class");

				$("#news").load("../../../../themes/50cent/"+classname+".php");

				return false;
			});
		});