   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>';

	if (!this.by) {}
	  else {
      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>';

	  if (!this.by3) {}
	  else {
      str += '<b>' + this.by3 + '</b><br>';
      str += this.title3 + '<br><br>';
	  }
	  

	  if (!this.img4) {}
	  else{
      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 + '<br><br>';
		}

	  if (!this.by4) {}
	  else {
      str += '<b>' + this.by4 + '</b><br>';
      str += this.title4 + '<br><br>';
	  }

		 
      return str;
   }
   var firstImg = new Image();
   firstImg.src = 'images/home_rosendin.gif';
   var secondImg = new Image();
   secondImg.src = 'images/home_tibco.gif';
   var thirdImg = new Image();
   thirdImg.src = 'images/home_benchmark.jpg';





   var firstImg2 = new Image();
   firstImg2.src = 'images/home_sharks.jpg';
   var secondImg2 = new Image();
   secondImg2.src = 'images/home_cisco.gif';
   var thirdImg2 = new Image();
   thirdImg2.src = 'images/home_rambus.gif';
   var fourthImg2 = new Image();
   fourthImg2.src = 'images/home_sjwdnavlogo.gif';

   var quotesArray = new Array();
   
   quotesArray[0] = new getQuotes(

	'"Coyote Creek has a really good track record. It is a professional, competent and cost-effective organization. I’ve never had a project fail or be untimely when working with Coyote Creek. I refer them constantly to my peers and hear nothing but positive feedback."',


      '"One of the best aspects of our project with Coyote Creek was their recommendation on how to set up the Symantec Enterprise Vault solution. Most consulting companies ask the client how they want software configured. We wanted advice from a team of experts who had done it before. Coyote Creek shared their best practices with us and we are very satisfied with the result."',

      '"As a leading venture capital firm, Benchmark operates in a fast-paced environment. Timely communication is critical so we cannot afford to have our email down. Coyote Creek’s RMM service delivers 24x7x365 reliability and gives us total confidence in our Exchange environment so we can focus on our investments."',
	  


	  '',
	  

	 'Sam Lamonica','Vice President and CIO, Rosendin Electric',

	  'Steve Degner','Director, Global IT Operations', 
       'Michael Traski','IT Manager, Benchmark Capital',
	   
	   '','',

	     
	   firstImg,secondImg,thirdImg).write();
   
   quotesArray[1] = new getQuotes(

      '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 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.',

	  '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.',


	  
	  '','',
      '','',
	  '','',
	  '','',
	   
	  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);
      }
   }

