
// ============================================================
function $(id){return document.getElementById(id);}
// ============================================================
var toolBarScrollDelay = 80;
// ============================================================
function createScrollingFrame(obj){
	var oleft, otop, owidth, oheight, time;
	if(!obj.style.left){obj.style.left = '0px';}
	if(!obj.style.top){obj.style.top = '0px';}
	if(!obj.style.width){obj.style.width = obj.offsetWidth +'px';}
	if(!obj.style.height){obj.style.height = obj.offsetHeight +'px';}
	oleft = parseInt(obj.style.left, 10); otop = Math.min(obj.offsetParent.offsetHeight - obj.offsetHeight, 0);
	owidth = parseInt(obj.style.width, 10); oheight = parseInt(obj.style.height, 10);
	obj.ani = new AnimationObject(obj);
	obj.ani.AddFrame(new AnimationFrame(oleft, otop, owidth, oheight, parseInt(Math.abs(otop/10), 10)*(+toolBarScrollDelay)));
}
// ============================================================
