	function initScrollLayer() {
	  // hide loading gif
	  var load_lyr = document.getElementById? document.getElementById("loading"): document.all? document.all["loading"]: null;
	  if (load_lyr) load_lyr.style.visibility = "hidden";
	  
	  // arguments: id of layer containing scrolling layers (clipped layer), id of layer to scroll, 
	  // if horizontal scrolling, id of element containing scrolling content (table?)
	  var wndo = new dw_scrollObj('wn', 'lyr1', 'imgTbl');
	 // wndo.setUpScrollbar("dragBar1", "track1", "v", 1, 1);
	  // wndo.setUpScrollbar("dragBar2", "track2", "h", 1, 1);
	
	  // not at 0,0 for this demo
	  dw_scrollObj.scrollTo('wn', 0, 0, 1);
	}

	// gliders....this is the paginting script inside the individual client jammy's
	//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~second call is there in case we do another...well, when we do another!
	//instance 1 call:
/*TDB UNCOMMENT FROM HERE TO XXXVVV
	featuredcontentglider.init({
	gliderid: "thumb-acs", //ID of main glider container
	contentclass: "glidecontent", //Shared CSS class name of each glider content
	togglerid: "p-select-acs", //ID of toggler container
	remotecontent: "", //Get gliding contents from external file on server? "filename" or "" to disable
	selected: 0, //Default selected content index (0=1st)
	persiststate: false, //Remember last content shown within browser session (true/false)?
	speed: 500, //Glide animation duration (in milliseconds)
	direction: "rightleft", //set direction of glide: "updown", "downup", "leftright", or "rightleft"
	autorotate: false, //Auto rotate contents (true/false)?
	autorotateconfig: [3000, 2] //if auto rotate enabled, set [milliseconds_btw_rotations, cycles_before_stopping]
	})
	XXXVVV*/
	
	/*//instance 2 call:
	featuredcontentglider.init({
	gliderid: "canadaprovincesALT",
	contentclass: "glidecontent",
	togglerid: "p-selectALT",
	remotecontent: "", //Get gliding contents from external file on server? "filename" or "" to disable
	selected: 1,
	persiststate: true,
	speed: 1000,
	direction: "rightleft", //set direction of glide: "updown", "downup", "leftright", or "rightleft"
	autorotate: false, //Auto rotate contents (true/false)?
	autorotateconfig: [3000, 2] //if auto rotate enabled, set [milliseconds_btw_rotations, cycles_before_stopping]
	})
	*/
//this is the script that fades out one of the two types of clients depending on what you click
//the timeout is written so you don't say "wait! i wanna see them all again!"...i rock~tdb
function dissolveOM(){
$('.WD').fadeTo('fast',1)
$('.OM').fadeTo('slow',.1)
/*setTimeout ( "$('.OM').fadeTo('slow',1)", 5000 )*/;
}

function dissolveWD(){
$('.OM').fadeTo('fast',1)
$('.WD').fadeTo('slow',.1)
/*setTimeout ( "$('.WD').fadeTo('slow',1)", 5000 )*/;
}


//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//kikin n stikin like popeyes fried chicken hover effect for the client list
	
	$(document).ready(function() {
		$(".WDOM_list").hover(function(){
			$(this).fadeTo("slow", 0.5);
		},function(){
			$(this).fadeTo("slow", 1);
		});
	});