// JavaScript Document
var quote = new Array();
/**
  * push quotes onto the array
**/
quote.push('<p class="featureQuote">Before DocuSync&trade;&nbsp;&nbsp;I had to remember to perform daily manual backups to tape.  This was a slow process, and half of the time I could not remember which tape had the most recent backup.  With DocuSync, all of my invaluable practice data is automatically backed up each night.  No more tapes and no more sitting around waiting for tapes to finish."</p><p class="featureQuoteSig">Dr. James Wilson, DDS<br />Oklahoma City, OK</p>');

quote.push('<p class="featureQuote">We are the only online document storage and management provider that offers such a robust suite of services for users to store, share, access, and backup their digital files anytime, from anywhere. Today\'s consumer and business person expects technology to keep up with their busy lifestyle and that is exactly what we have accomplished with DocuSync&trade; 2.0.</p><p class="featureQuoteSig">Chris Lloyd, CEO and Co-founder<br />DocuSync&trade; Corporation<br />Summer 2007<br /></p>');

quote.push('<p class="featureQuote">DocuSync\'s superb file storing, sharing, and management capabilities, as well as its world-class security, gave me more control over managing and supporting the technology requirements of our mobile workforce. Without DocuSync, we could have lost critical client data --- and clients --- many times over.</P> <p class="featureQuote"><a href="fric.html">READ FULL STORY</a></p><p class="featureQuoteSig">Thomas Fric, Chief Technology Officer</p>');

//quote.push('<p class="featureQuote">Document security and management is critical to running a law practice.  DocuSync&trade; allows my small practice to have the same offsite backup and ubiquitous access normally reserved for much larger firms that employ internal IT departments.  Last year the hard drive on our server became corrupted and all local data was lost. Without DocuSync, recovering this data would have cost thousands of dollars.  However, with DocuSync, we did not lose a single document; we replaced the hard drive and used DocuSync\'s one-click \'Restore\' functionality to return all of our documents and file hierarchy to their previous locations.</p><p class="featureQuoteSig">Seth M. Anderson, Partner<br />Stephens Anderson<br />Ft. Worth, TX</p>');

/**
  * Randomly return one of the quotes
**/
function getQuote()
{
	document.getElementById('quoteBox').innerHTML = quote[Math.floor(Math.random() * quote.length)];
}

function getHeaderText()
{
	document['Header_Text'].src = "images/HeaderText/HeaderText_" + Math.floor(Math.random() * 2) + ".png";
}