function doPortalRequest(xp, target)
{
	$("#right").stop(true, true);
	$("#right").animate({opacity:0 }, 1000, "linear", function()
	{
		$.getJSON('ajax.php', {xp: xp},  function(data) 
		{
			$("#content").html(data.tartalom);
			document.title = data.cim;
			$("#right").css("background-image", "url(/static/images/site/"+data.bg+")");
			$("#menu ul li > a.selected").removeClass("selected");
			$(target).addClass("selected");
			$("#right").animate({opacity:1 }, 1000);
		});
	});
}

$(document).ready(function() {
	$("#container_shadow").fadeIn(1000);
	$("#right").fadeIn(1000);
});