pop = new imagePop()

function scrollSetup() { 
	bsbObj = new bugScrollBar(	document.getElementById("bioDiv")	// append to this object
								,310								// scrollBar base width
								,340								// scrollBar base height 
								,"gfx/bugs-upNormal.gif"			// up button normal image
								,"gfx/bugs-upHover.gif"				// up button hover image
								,"gfx/bugs-upDown.gif"				// up button down image
								,"gfx/bugs-downNormal.gif"			// down button normal image
								,"gfx/bugs-downHover.gif"			// down button hover image
								,"gfx/bugs-downDown.gif"			// down button down image
								,"gfx/bugs-dragBase.gif"			// drag base image
								,"gfx/bugs-dragNormal.gif"			// drag button normal image
								,"gfx/bugs-dragHover.gif"			// drag button hover image
								,"gfx/bugs-dragDown.gif"			// drag button down image
								,15									// all button image widths
								,16									// up & down image heights
								,16									// top padding
								,16									// bottom padding
								,50									// drag button image height
								,20									// gap between content and scrollbar
	)
	clonedRef = document.getElementById("bioContent").cloneNode(true)
	bsbObj.setClonedHTML( clonedRef )
}

