
$(document).ready(
	function()
	{
		interval = setInterval('funcRepeatCall()', 500);
		resize();
		$(window).resize(resize);
		
		$(window).load(
			function()
			{
				clearInterval(interval);
				resize();	
			}
		);
	}
);


function resize()
{
	lastImageOffset   = $("#topnavlastimage").offset();		
	lastImageLeftLoc  = lastImageOffset.left;
	lastImageTopLoc   = lastImageOffset.top;		
	lastImageRightLoc = lastImageLeftLoc * 1 + $("#topnavlastimage").width() + 10 * 1;
	$("#dvprojadds").css({left: lastImageRightLoc + "px", top: lastImageTopLoc+ "px", width:"130px"});
	$("#countryFlag").css({left: lastImageRightLoc, top: lastImageTopLoc - $("#countryFlag").height() - 16, width: 130});
}

function funcRepeatCall()
{
	resize();
}
