var comments =  new Array(
	'<div class="slide4"><div class="head"><h1>Communications</h1></div><div class="slide_content">Universal Technologies will help your organization chart out a voice over internet protocol (VOIP) strategy and implement it.</div></div>',
	'<div class="slide3"><div class="head"><h1>Audio &amp; Video</h1></div><div class="slide_content"> Universal Technologies develops web applications that are aligned with the strategic business objectives of our clients. Our team works with you to identify and define requirements, create a technology strategy and chart out a project schedule. </div></div>',
	'<div class="slide5"><div class="head"><h1>Email &amp; Web</h1></div><div class="slide_content">Universal Technologies can help upgrade your website, so it is more in tune in with the 2.0 era.</div></div>',
	'<div class="slide1"><div class="head"><h1>Networks</h1><div class="slide_content">Universal Technologies will help your organization chart out a network strategy and implement it.</div></div>',
    '<div class="slide2"><div class="head"><h1>Web Hosting</h1></div><div class="slide_content">Universal Technologies offers solutions in core infrastructure areas for small businesses to enterprises in order to host their websites and applications.</div></div>'
	
	
	
	
	
	
	// Leave the last quote without a comma at the end
	);





//var comments = new Array('text1', 'text2', 'text3');
   var current = 0;
   var element = document.getElementById('testimonials');

   /* cross browser method to set opacity */
   function setOpacity(level) {
     element.style.opacity = level;
     element.style.MozOpacity = level;
     element.style.KhtmlOpacity = level;
     element.style.filter = "alpha(opacity=" + (level * 100) + ");";
   }

   /* rotate and create timers to fade the testimonial in */
   function fadeIn(){
     element.innerHTML = comments[current];
     current = (current + 1) % comments.length;
     for (i = 0; i <= 1; i = i + 0.05) {

       setTimeout("setOpacity(" + i + ")", i * 1000);
     }
     setTimeout("fadeOut()", 6000);
   }

   /* create timers to fade the testimonial away */
   function fadeOut() {
     for (i = 0; i <= 1; i = i + 0.05) {
       setTimeout("setOpacity(" + (1 - i) + ")", i * 1000);
     }
     setTimeout("fadeIn()", 1000);
   }
   fadeIn();
