dw_scrollObjs = {};
dw_scrollObj.speed=100;
function dw_scrollObj(wnId,lyrId,cntId){
	this.id=wnId;dw_scrollObjs[this.id]=this;
	this.animString="dw_scrollObjs."+this.id;this.load(lyrId,cntId);};
	dw_scrollObj.loadLayer=function(wnId,id,cntId){
		if(dw_scrollObjs[wnId])dw_scrollObjs[wnId].load(id,cntId);};
		dw_scrollObj.prototype.load=function(lyrId,cntId){

lyr=document.getElementById(lyrId);wndo=document.getElementById(this.id);lyr.style.top=this.y=0;lyr.style.left=this.x=-100;this.maxY=(lyr.offsetHeight-wndo.offsetHeight>0)?lyr.offsetHeight-wndo.offsetHeight:0;this.wd=cntId?document.getElementById(cntId).offsetWidth:lyr.offsetWidth;this.maxX=(this.wd-wndo.offsetWidth>0)?this.wd-wndo.offsetWidth:0;
			this.lyrId=lyrId;lyr.style.visibility="visible";

			this.ready=true;};
			dw_scrollObj.prototype.shiftTo=function(lyr,x,y){lyr.style.left=(this.x=x)+"px";
};

function(){if(dw_scrollObj.hold){for(var i=0;dw_scrollObj.hold[i];i++){var wndo=document.getElementById(dw_scrollObj.hold[i][0]);

var pos=getPageOffsets(holder);wndo.style.left=pos.x+"px";wndo.style.top=pos.y+"px";}}};function getPageOffsets(el){var left=el.offsetLeft;

var top=el.offsetTop;while(el=el.offsetParent){left+=el.offsetLeft;top+=el.offsetTop;}return{x:left,y:top};};

