function scrollBT(){
if(!this.isRunning){
this.isRunning=1;
this.currentCycles=0;
this.bareObject=(document.getElementById)? document.getElementById(this.variableName):
(document.all)?document.all[this.variableName]:0;
	if(!this.bareObject){this.isRunning=0; return false;};
this.owner.lastCalled=this.methodName;
this.reset=function(){this.bareObject.style.top=0+'px'; this.bareObject.style.left=0+'px';}
this.speed=(!isNaN(parseFloat(this.speed)))? parseFloat(this.speed):200;
this.scroll=(!isNaN(parseFloat(this.scroll)))?parseFloat(this.scroll):1;
this.increaser=this.bareObject.offsetTop;
}
//RUN:
this.increaser-=this.scroll;
if(this.increaser<-this.bareObject.offsetHeight){
++this.currentCycles;
this.increaser=this.bareObject.parentNode.offsetHeight;
}
this.bareObject.style.top=this.increaser+'px';
}


var tp_reel=new Image(25,90);
tp_reel.src='../_images_/reel2.gif';



function bodyend2(){
	//first set up scroller engines:
scroller=null;
scroller=new emptyShell("scroller");

scroller.enable(scrollerName);
scroller[scrollerName].setAttributes(
"speed", 50,
"scroll", 2 
);
scroller[scrollerName].stop();
if(images_names.length){
document.getElementById('scrollerwrap').style.display='block';
};
	//remove placeholder gifs (they saved loading time), and give proper images:
for(var i=0; i<images_names.length; i++){
	if(document.getElementById('scroller_image_'+i)){
	var I=document.getElementById('scroller_image_'+i);
	I.src=imagesPath+images_names[i];
	I.onload=countProperImagesLoad;/*run scroller only if all proper images have been loaded*/
	I.onmouseover=document.getElementById('desc_image_'+i).onmouseover=function(){
		if(window['scroller']){scroller[scrollerName].stop();};
	}//anonymous function over
	I.onmouseout=document.getElementById('desc_image_'+i).onmouseout=function(){
		if(window['scroller']){scroller[scrollerName].run();};
	}//anonymous function over
	};
}
document.getElementById('reel').style.height=
document.getElementById('reel2').style.height=
	document.getElementById('scrollerwrap').style.height=
	(
	document.getElementById('columnscroller').offsetHeight - 10
	)+'px';
var scrollerHeight=document.getElementById('columnscroller').offsetHeight;
imagesEnoughToScroll=
	(document.getElementById('scroller').offsetHeight >= scrollerHeight)?
	imagesEnoughToScroll:false;
if(images_names.length){
	if(document.getElementById('FP')){
	var FP=document.getElementById('FP');
	var SW=document.getElementById('scrollerwrap');
	FP.style.top=(   (SW.offsetHeight/2)-(FP.offsetHeight/2)   )+'px';
	FP.style.left=(   (SW.offsetWidth/2)-(FP.offsetWidth/2)   )+'px';
	FP.style.visibility='visible';
	};
};
document.getElementById('reel2').style.left=(
	document.getElementById('reel').offsetWidth+
	document.getElementById('scroller').offsetWidth - 4)+'px';
var scrollerHeight=document.getElementById('scrollerwrap').offsetHeight;
imagesEnoughToScroll=
	(document.getElementById('scroller').offsetHeight >= scrollerHeight)?
	imagesEnoughToScroll:false;
	if(!imagesEnoughToScroll){document.getElementById('FP').style.display='none';}
setTimeout("scroller."+scrollerName+".stop();scroller."+scrollerName+".run();", 5000);/*IE 6 at times doesn't load*/
getMap(mapAddress, lat, lng);
}
