
<!--
var theImages = new Array()
 
theImages[0] = "/staffing/bowman.jpg"
theImages[1] = "/staffing/SPENCER.jpg"
theImages[2] = "/staffing/NEWMAN.jpg"
theImages[3] = "/staffing/KMIECIK.jpg"

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
	//alert('got here - showImage');
	if(whichImage==0){
	//bowman
	document.write('<img src="'+theImages[whichImage]+'" border=0 width=148 height=151></a><br>');
	document.write('<p class="SideBarQuote">"Lending a helping hand to those with a vision."</p>');
	}
	else if(whichImage==1){
	//spencer
	document.write('<img src="'+theImages[whichImage]+'" border=0 width=148 height=151></a>');
	document.write('<p class="SideBarQuote">"Everyone wants to be like us."</p>');
	}
	else if(whichImage==2){
	//newman
	document.write('<img src="'+theImages[whichImage]+'" border=0 width=148 height=151></a>');
	document.write('<p class="SideBarQuote">"Our mission is to help you achieve your goals."</p>');
	}
	else if(whichImage==3){
	//kmiecik
	document.write('<img src="'+theImages[whichImage]+'" border=0 width=148 height=151></a>');
	document.write('<p class="SideBarQuote">"Our decisions and actions are Client Centered from day one."</p>');
	}
}

function random_quotes(){
	//alert('got here - show random quotes')
	var clientquotes=new Array()
	
	clientquotes[1]='"The personnel I deal with on a regular basis at Riviera are very friendly and extremely helpful. If I call with a question or concern, they are prompt in assisting me."<p class="ClientSig">Marjie Ellison | Fomey, TX</p>'
	clientquotes[2]='"Riviera helps keep a consistent cash flow and help us manage our receivables. They also help keep us from doing business with customers whose credit level is substandard."<p class="ClientSig">John Savasten | Hayden, AL</p>'
	clientquotes[3]='"Everyone has been extremely helpful and kind. Even after earning my business, the people are still kind, give great attention to details of my account, and I\'m not shoved out in the pasture with a number on my ear."<p class="ClientSig">Angie Geron | Grapevine, TX</p>'
	clientquotes[4]='"I think Riviera is the most reliable, honest company there is. You guys are always there when we need any kind of help and answers."<p class="ClientSig">Ramon Sanchez | Hialeah, FL</p>'
	clientquotes[5]='"Not only am I happy that I have a steady flow of cash when I need it but I am treated very well by the people who work there."<p class="ClientSig">Robert Gray | Portland, OR</p>'
	clientquotes[6]='"Riviera is the backbone of my business by me knowing I always have a little something tucked away and that I can stand on my own two feet. Not only are they there to help, but they have become friends and family."<p class="ClientSig">Linda Villanueva | Baltimore, MD</p>'
	clientquotes[7]='"For financing it can\'t get much easier. Our company has been growing for several years and the growth rates could not have been achieved without the additional financing that Riviera has provided."<p class="ClientSig">Stan Shaw | Goodyear, AZ</p>'

	var index1=Math.floor(Math.random()*clientquotes.length)
	var index2=Math.floor(Math.random()*clientquotes.length)
	
	if (index1==0)
		index1=1	
	if (index2==0)
		index2=1

	if (index1==index2 && index1!=7)
		index2=index1+1
	else if (index1==index2 && index1==7)
		index2=1
	
	//alert('index1='+index1+'\nindex2='+index2)
	//document.write('<p class="ClientQuotesHeader">What Our <br>Clients Say:<br><br></p>')
	document.write('<p class="ClientQuotes">' + clientquotes[index1] + '</p><br>')
	document.write('<p class="ClientQuotes">' + clientquotes[index2] + '</p>')
}
	
//-->

