function addArrow(thisClient)
{	
	ar =  thisClient+'arrow';	
	document[ar].src='images/arrow.gif';	
}
//function to clear the arrow from the arrow div
function clearImage(thisClient)
{	
	ar =  thisClient+'arrow';	
	document[ar].src='images/arrowplaceholder.gif';	
}
function clientText(thisClient){
		
	theObj = document.getElementById('clientText');	
	
	var script = '';
	
	//the actual text here...
	if (thisClient == 'wpd')
	{	
		script = '<p><em>Going to you with only a concept for a video, you were able to draw out from us what we wanted.  You took our ';
		script += 'message and made an excellent, award winning video that is helping us in our work to reduce teen gun violence. Thank ';
		script += 'you!</em><br><br>';
		script += '<table><tr><td><img src="images/frame-policelogo_sm.jpg" border="0"></td><td><span class="grey">Lt. Dwayne Dachel';
		script += '</span><br>Wausau Police Department</td></tr></table></p>';
	}else if (thisClient == 'mfc')
	{
		script = '<p><em>We\'re constantly amazed at how quickly Rucinski and Reetz can take a complex medical topic and develop creative scripts ';
		script += 'in such a timely fashion. When they take on a project of ours, they totally immerse themselves. The result is that they ';
		script += 'not only know the topic, they feel and empathize with it. The result is a fantastic script.</em><br><br>';
		script += '<span class="grey">James Daniels</span><br>Media Creative Services, Marshfield Clinic<br></p>';
		
		script += '<p><em>We do not usually use outside writers.  But when we do, we have used only Rucinski &amp; Reetz Communication.  They ';
		script += 'have quick turnaround and a quality product.  I do not hesitate to recommend them to anyone.</em><br><br>';
		script += '<span class="grey">Dick Kenitzer</span>';
		script += '<br>Multimedia Producer, Marshfield Clinic<br><img src="images/marshfield_sm.gif" border="0"></p>';		
		
	}else if (thisClient == 'wsd')
	{
		script = '<p><em>I have worked with Rucinski & Reetz Communications for over ten years. Working with them guarantees that I can ';
		script += 'share the people and programs of the Wausau School District in a way that engages and informs. Their award-winning ';
		script += 'productions hit the mark every time. I count on the talents of Rucinski and Reetz—that\'s why they are my first call ';
		script += 'whenever I think video!</em><br><br>';
		script += '<table><tr><td><img src="images/frame-wausaulogo_sm.jpg" border=0></td><td><span class="grey">Mary Ellen Marnholtz';
		script += '</span><br>Community Relations Coordinator Wausau School District</td></tr></table></p>';
	}else if (thisClient == 'bec')
	{
		script = '<p><em>From the first moment we worked with Rucinski &amp; Reetz, I knew we had added a powerful tool to our production ';
		script += 'package.  The level of professionalism, attention to detail, quick turn-around and most of all creative ability they ';
		script += 'bring to our projects has made a marked difference in our finished product.</em><br><br>';
		script += '<table><tr><td><img src="images/frame-beckerlogo_sm.jpg" border=0></td><td><span class="grey">Bryan Piepenburg</span>';
		script += '<br>Media Services, Becker Communications</td></tr></table></p>';
	}else if (thisClient == 'icf')
	{
		script = '<p><em>All of us enjoyed working with you on the video. We are excited to have this new tool for communicating ICF\'s ';
		script += 'message to new audiences, and especially for drawing people to our Baraboo site. Thank you indeed for your marvelous ';
		script += 'expression of our work and of our site.</em><br><br>';
		script += '<table><tr><td><img src="images/frame-icflogo_sm.gif" border=0></td><td><span class="grey">James Harris</span><br>';
		script += 'President, International Crane Foundation</td></tr></table></p>';
	}
	else if (thisClient == 'tph')
	{
		script = '<p><em>I\'ve been working with Rucinski & Reetz now for over 10 years and the one thing I\'ve noticed is that every ';
		script + 'program they  write is a winner.  Regardless of the subject matter, they put their  whole heart and mind into it.  ';
		script += 'There are a lot of people who can write, but I have yet to find anybody else who can take a subject and make a story ';
		script += 'come to life the way these writers can.';		
		script += '</em><br><br>';
		script += '<table><tr><td><img src="images/posthouse.jpg" border=0></td><td><span class="grey">Don Byrne</span><br>';
		script += 'Owner, The Post House</td></tr></table></p>';
	}
	
	//display the text here
	theObj.innerHTML = script;
}
//function to preselect the Wausau Police Department testimonial on page load so
//there's not a blank page on first load...
function selectTestimonial()
{
	MM_swapImgRestore(); 
	MM_swapImage('police','','images/frame-policetxt2.jpg',1); 
	clientText('wpd');
}

