// JavaScript Document

var behavior = "scroll" // can be alternate or slide
var direction = "left" // can be right, left , up or down
var ScrollDelay = 10; // speed of scroller


	function scrollMe(text,width,height)
	{
		document.write('<div class="paybox"><marquee behavior=scroll direction=left scrolldelay=120>ICU Investigations in the leader in Utah for Civil Process Service.</marquee></div>');
	}

function scrollMe2(text,width,height)
	{
		document.write('<div class="paybox"><marquee behavior=scroll direction=left scrolldelay=200>Background Checks  |  Skip Traces  |  Investigations  |  Missing Assets  |  Missing Persons  |  Paralegal  |  Civil Process Service  |  Juvenile Transpory  |  Supervised Visitation  |  Criminal/Civil  | </marquee></div>');
	}
	
//	function scrollMe(text,width,height)
//	{
	//	document.write('<div style="width: '+width+'px; height: '+height+'px; background: #eeeeee;"><marquee behavior='+behavior+' direction='+direction+' scrolldelay='+ScrollDelay+'>'+text+'</marquee></div>');
//	}



