<!--
/*************************************************************************
This code is from Dynamic Web Coding at www.dyn-web.com
See Terms of Use at http://www.dyn-web.com/bus/terms.html
Permission granted to use this code 
as long as this entire notice is included.
*************************************************************************/

function initStatLyr() {
	// args: id, left, top, w, h, duration of glide to location onscroll, acceleration factor
  // acceleration factor should be -1 to 1. -1 is full deceleration
	var statLyr = new Glider("glidePopup",55,30,null,null,1000,-1); //55 is left, 40 is top
  statLyr.hide(); // add show or hide to set initial visibility of layer
}

//-->
