
$(document).ready(
	function()
	{
		//interval = setInterval('funcRepeatCall()', 500);
		resize();
		$(window).resize(resize);
		
		$(window).load(
			function()
			{
				//clearInterval(interval);
				resize();	
				
				$("#dvrightbanner").show();
				$("#newspotlight").show();
			}
		);
	}
);


function resize()
{
	lastImageOffset   = $("#topnavlastimage").offset();		
	lastImageLeftLoc  = lastImageOffset.left;
	lastImageTopLoc   = lastImageOffset.top;		
	lastImageRightLoc = lastImageLeftLoc * 1 + $("#topnavlastimage").width() + 10;
	$("#dvrightbanner").css({left: lastImageRightLoc + "px", top: lastImageTopLoc+ "px", width:"125px"});
	$("#newspotlight").css({left: lastImageRightLoc + "px", top:"10px", width:"125px"});
}

function funcRepeatCall()
{
	resize();
}
