function findPosX(obj)
{
var curleft = 0;
if (obj.offsetParent)
{
while (obj.offsetParent)
{
curleft += obj.offsetLeft
obj = obj.offsetParent;
}
}
else if (obj.x)
curleft += obj.x;
return curleft;
}
function placeTopBanner() {
	var img = document.getElementById('pp_logo');
	var l = findPosX(img) + img.width;
	document.getElementById('top_banner').style.left = (l + 26) + 'px';
}
