if (document.layers){
   browseWidth=window.outerWidth;
}
if (document.all){
   browseWidth=document.body.clientWidth;
}

document.write("<div id='rings' name='rings' style='z-index:20;position:absolute;top:135px;left:"+(browseWidth-206)+"px;width=1px;overflow:visible;'><img src='images/ringsLayer.gif'></div>");

function reposition() {
	if (document.layers){
	   objElement = document.layers['rings'];
	   browseWidth=window.outerWidth;
	}
	if (document.all){
	   objElement = document.all['rings'].style;
	   browseWidth=document.body.clientWidth;
	} else {
		objElement = document.getElementById('rings').style;
		browseWidth=document.body.clientWidth;
	}
	objElement.left = (browseWidth-206);
}

window.onresize = reposition;