function realignBackgroundRight()
{
	$("#backgroundRight").css({display:"none"})
	
	var left = (($(window).width() - $("#content").width()) / 2) + ($("#content").width()) + "px";
	$("#backgroundRight").css({left:left})
	
	$("#backgroundRight").css({display:"block"})
	
	//alert("left = " + left + " - width = " + $(window).width());
}

$(document).ready(realignBackgroundRight);
$(window).resize(realignBackgroundRight);