// "Zsetup.js", (matched with "Zscrollbar2.js"),// DHTML scrollbar code - Required files://	"Zprime.js"  (from the 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, 15,  15, 362, 572, 100);//Zobject[1] = new makeZobject('divCont', null, 16,  15, 360, 570, 500);//Zobject[2] = new makeZobject('floatContent', 'divCont', 0, 0, 360, 568, 1000);//Zobject[3] = new makeZobject('scrollbkg', null, 15, 590, 362, 15, 1000);//Zobject[4] = new makeZobject('slider', null, 27, 592,  44, 11, 2000,'hidden');//Zobject[5] = new makeZobject('uparrow', null, 15, 590, 12, 15, 2000);//Zobject[6] = new makeZobject('downarrow', null, 0, 590, 12, 15, 2000);Zobject[0] = new makeZobject('divOutline', null, 188, 270, 302, 327, 100);Zobject[1] = new makeZobject('divCont', null, 211, 271, 278, 325, 500);Zobject[2] = new makeZobject('floatContent', 'divCont', 0, 0, 278, 323, 1000);Zobject[3] = new makeZobject('scrollbkg', null, 188, 600, 302, 15, 1000);Zobject[4] = new makeZobject('slider', null, 27, 392,  44, 11, 2000,'hidden');Zobject[5] = new makeZobject('uparrow', null, 15, 390, 12, 15, 2000);Zobject[6] = new makeZobject('downarrow', null, 0, 390, 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 = 0; // 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 = 11;// 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!