
function initGliderSidebar()
{
// 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 GlideLayer = new Glider('sidebar', 0, 0, null, null, 1000, -1);
	GlideLayer.show();
}

window.onload = initGliderSidebar;