// ZNIPPets.com, "Zsetup.js", (matched with "Zscrollbar2.js"), by DocOzone... 
// DHTML scrollbar code - Required files:
//	"Zprime.js"  (from the Znippets library)
//	"Zbrowse.js" (ditto)
//	"Zobject.js" (ditto)

Zobject = new Array();
	function initZobjects() { 
// create list elements like this... name,wrapper,top,left,height,width,zindex
Zobject[0] = new makeZobject('divOutline', null, 107,  89, 452, 572, 100);
Zobject[1] = new makeZobject('divCont', null, 108,  89, 450, 570, 500);
Zobject[2] = new makeZobject('floatContent', 'divCont', 0, 0, 550, 568, 1000);
Zobject[3] = new makeZobject('scrollbkg', null, 107, 664, 452, 15, 1000);
Zobject[4] = new makeZobject('slider', null, 114, 666,  44, 11, 2000,'hidden');
Zobject[5] = new makeZobject('uparrow', null, 107, 664, 12, 15, 2000);
Zobject[6] = new makeZobject('downarrow', null, 0, 664, 12, 15, 2000);
	}

// is page loaded? No.
	loaded = 0;

// is everything centered? Yes.
	centerAll = 0;

// Do you want this thing to sprawl across the screen? Set this flag to 'true' or one (1). 
// If so, the only numbers I'll use in that Zobject array are the slider and scrollbkg width.
// Set the "safe" values to let me know how close to the edge to go, cool?
	sprawlFlag = false; // set to '1' if you want a full screen scroller.
		if (sprawlFlag) {
	safeTop=72;
	safeLeft=32; 
	
	// the top and left are fixed values, make the right and bottom values fixed if you've set
	// the sprawlFlag to "false", then you can ignore the fussy settings in the Zobject array above
	
	function safeRight() { if (Zflag.IE){return Zbrowse.width()-32}else{return Zbrowse.width()-48;}}
	function safeBottom() { return Zbrowse.height()-32; }
	}

// milliseconds to repeat & amount to scroll.
	Zrefresh = 10;
	Zdistance = 20;

// how tall are the 'up' and 'down' arrows?
	ZupDownArrows = 12;

// That's it, folks! You can just leave that other file alone, bad juju there... ;)
// Don't forget, you also need the DIV's and CSS stylesheet to make it go!