   function getQuotes(q,q2,q3,q4,
   						b,t,b2,t2,b3,t3,b4,t4,
							i,i2,i3,i4){
      this.quote = q;
	  	this.quote2 = q2;
			this.quote3 = q3;
				this.quote4 = q4;
		
      this.by = b;
	  	this.by2 = b2;
			this.by3 = b3;
	  			this.by4 = b4;
		
	  this.title= t;
	  	this.title2= t2;
			this.title3= t3;
	  			this.title4= t4;
	  
      this.img = i;
	    this.img2 = i2;
		  this.img3 = i3;
		    this.img4 = i4;
      this.write = showQuotes;
   }
function showQuotes(){
      var str = '';
      	 
      str += '<img border="0" class="imgshw" align="top" src="' + 
         this.img.src + '"><br> <img class="imgshw" src="images/blank.gif" width="10" height="5"><br>';
	  str += this.quote + '<br><br>';
	  str += '<b>' + this.by + '</b><br>';
	  str += this.title + '<br><br>';
		 
	  str += '<img border="0" class="imgshw" src="' + 
         this.img2.src + '"<br> <img class="imgshw" src="images/blank.gif" width="10" height="5"><br>';
	  str += this.quote2 + '<br><br>';
	  
	  if (!this.by2) {}
	  else {
      str += '<b>' + this.by2 + '</b><br>';
      str += this.title2 + '<br><br>';
	  }
		 
	  str += '<img border="0" class="imgshw" src="' + 
         this.img3.src + '"><br> <img class="imgshw" src="images/blank.gif" width="10" height="5"><br>';
      str += this.quote3 + '<br><br>';
	  
      str += '<img border="0" class="imgshw" src="' + 
         this.img4.src + '"><br> <img class="imgshw" src="images/blank.gif" width="10" height="5"><br>';
      str += this.quote4 ;

		 
      return str;
   }
   var firstImg = new Image();
   firstImg.src = 'images/home_polyremedy.gif';
   var secondImg = new Image();
   secondImg.src = 'images/home_cityteam.jpg';
   var thirdImg = new Image();
   thirdImg.src = 'images/home_cisco.gif';
   var fourthImg = new Image();
   fourthImg.src = 'images/home_rambus.gif';
   
   var firstImg2 = new Image();
   firstImg2.src = 'images/home_natividad.gif';
   var secondImg2 = new Image();
   secondImg2.src = 'images/home_sharks.jpg';
   var thirdImg2 = new Image();
   thirdImg2.src = 'images/home_sjwdnavlogo.gif';
   var fourthImg2 = new Image();
   fourthImg2.src = 'images/home_issi.jpg';
   var quotesArray = new Array();
   
   quotesArray[0] = new getQuotes(
      '"The Remote Monitoring and Maintenance service provided by Coyote Creek is exactly what we needed as we have very limited staff. Now I can rely on Coyote Creek to monitor our network and let us know early if anything is headed in the wrong direction freeing us up to spend time on other business critical projects. The people at Coyote Creek have been very flexible and open to creating a monitoring configuration which best fits our company’s needs."',
	  
	  '"Working with Coyote Creek was a fantastic experience. The team was extremely competent and all wanted to go the extra mile to ensure a smooth systems upgrade. They surpassed our expectations and have become part of the fabric we' + "'" + 've woven to accomplish our mission."',
	  
	 'Coyote Creek helped Cisco migrate its email system to Microsoft Exchange. Today, we operate the Cisco Global Email and Messaging environment, 24x7x365.',
	 
	'After a successful migration to Microsoft Exchange, Rambus has chosen Coyote Creek to design custom applications for automating critical business processes.',
	  
       'Joe Coyne','Vice President, Solution Delivery and I.T.',
	   'Jeff Cherniss','CFO, CityTeam Ministries',
	   '','',
	   '','',
	     
	   firstImg,secondImg,thirdImg,fourthImg).write();
   
   quotesArray[1] = new getQuotes(
      '"Coyote Creek has a long-standing relationship with us, and has been providing technical leadership in developing our own Active Directory and Exchange. I have been impressed with their level of expertise and high degree of customer support. I would be happy to work with them again in the future. Thanks!"',
	  'Coyote Creek helped Silicon Valley Sports Entertainment, the holding company for San Jose’s popular hockey team, successfully implement an email archiving system using Symantec’s Enterprise Vault. We also provided consulting expertise to assist with their Microsoft Exchange 2007 upgrade.',
	  'Coyote Creek designed and implemented a VMWare ESX infrastructure for the San Juan Water Districted that includes Virtual Center, VMotion, VMWare Cluster, and Distributed Resource Scheduler. As part of the project we also converted all physical servers to virtual (P to V) using VMWare Converter Enterprise.',
	  'With Coyote Creek engineering help, Integrated Silicon Solutions, Inc. had a smooth conversion from IBM Lotus Notes to Microsoft Exchange. In addition, we also implemented a disaster recovery system using geographically dispersed clusters (geo-clusters) with Microsoft Exchange.',
	  
	  'Kirk Larson','CIO, Natividad Medical Center',
      '','',
	  '','',
	  '','',
	   
	  firstImg2,secondImg2,thirdImg2,fourthImg2).write();
   
	   
   var nIndex = 0;
   var timerID = null;
   
   function rotateQuotes(){
      var len = quotesArray.length;
      if(nIndex >= len)
         nIndex = 0;
      document.getElementById('quotes').innerHTML = 
         quotesArray[nIndex];
      nIndex++;
      timerID = setTimeout('rotateQuotes()',10000);
   }

   function pauseQuotes() {
      if (timerID != null) {
         clearTimeout(timerID);
         timerID = null;
      }
   }
   
   function playQuotes() {
      if (timerID == null) {
         timerID = setTimeout('rotateQuotes()', 1000);
      }
   }
