﻿
    Quotes = new Array(3);
    Quotes[1]="<span>\"VimBiz is an indispensible tool for managing our engineering workflows in a broadcast or production environment. It is a powerful solution, and Vimsoft's support is outstanding.\" </span><br /><br /><table><tr><td align=\"left\" style=\"width: 159px;\"><span style=\"font-size: 8.0pt;\">Stephen Jones<br />Systems Engineer<br />Harpo Studios, Inc.<br />Chicago, Illinois<br /></span></td><td align=\"right\" style=\"width: 102px;\"><img src=\"images/harpo_home.jpg\" alt=\"Harpo\" /></td></tr></table>";
    Quotes[2]="<span>\"First-time user. No instructions. 3½ minutes. That’s one of the many reasons we went with VimBiz for the Toronto Production Centre of the CBC.\" </span><br /><br /><table><tr><td align=\"left\" style=\"width: 159px;\"><span style=\"font-size: 8.0pt;\">Tony Mountford<br />Chief Technician<br />Canadian Broadcasting Corporation<br />Toronto, Ontario<br /></span></td><td align=\"right\" style=\"width: 102px;\"><img src=\"images/cbc_home.jpg\" alt=\"CBC\" /></td></tr></table>";
    Quotes[3]="<span>\"I wish other companies had the technological prowess and commitment to customer satisfaction of Vimsoft. Vimsoft is a great company with great software that is making my job easier.\" </span><br /><br /><table><tr><td align=\"left\" style=\"width: 159px;\"><span style=\"font-size: 8.0pt;\">Dave Duncan<br />Chief Engineer<br />Technicolor Network Services U.S.<br />Denver, Colorado<br /></span></td><td align=\"right\" style=\"width: 102px;\"><img src=\"images/tbyt_home.jpg\" alt=\"TBYT\" /></td></tr></table>"; 

    
    var theTimer = 0;
    var QuoteIndex = 2;

    
function StartQuoteTimer()
	{			
		var temp = "RotateQuotes();";
		theTimer = setInterval(temp, 13000);
	}


	
function RotateQuotes(){
		if (QuoteIndex)
		{
		
		if (document.getElementById("testimonials"))
		{
				var id=document.getElementById("testimonials").innerHTML = Quotes[QuoteIndex];   
						
			if (QuoteIndex==3){
			QuoteIndex = 0;
			 }
		} else {
		
			StopQuoteTimer();
		
		}
		
	
		}
			
	QuoteIndex = QuoteIndex + 1;
	
		if (QuoteIndex>=4
		){
			QuoteIndex = 0;
			 }
	
	}


    function StopQuoteTimer()
	{		
		clearInterval(theTimer);
		theTimer = null;
		
	}
	
	
	function WatchedMovie(pageName){
		__doPostBack("watchedMovie", pageName);
	}
	
	function DownloadTrial(version){
		__doPostBack("download", version);
	}
	
	
	function mouseOver(id, img)
    {
        document.getElementById(id).src = img
    }
    
    function mouseOut(id, img)
    {
        document.getElementById(id).src = img
    }

   function buttondown(src)
{
document.getElementById('btnFp').src = src;

}
