window.onload = function(){
	initCrossBrowserLib();
 	var div=initDivPos(document.getElementById("floormapwrapper"));
	ech_attachMouseDrag(div,null,null,dragmap,1,null,null,null,null)
	.linkCtrl(getDivImage(div,'floormapbase'))
	.linkCtrl(getDivImage(div,'floormaptenant'));
	var div2=initDivPos(document.getElementById("floormapminiframe"));
	ech_attachMouseDrag(div2,null,null,dragminimap,1,null,null,null,null);
	for( i = 201 ; i <= 221 ; i++ ){
		tmp="../img/floormap/floormap_t"+i+".gif";
		img=new Image;
		img.src=tmp;
		document.getElementById(i).onmouseover=function(){
			tmp="../img/floormap/floormap_t"+this.id+".gif";
			document.getElementById("floormaptenant").src=tmp;
			document.getElementById("floormapwrapper").style.cursor="hand";
		}
		document.getElementById(i).onmouseout=function(){
			document.getElementById("floormaptenant").src="../img/floormap/transparent.gif";
			document.getElementById("floormapwrapper").style.cursor="move";
		}
    }
	document.getElementById("floormapwrapper").style.cursor="move";
}
