// JavaScript Document

// quotations for index page rotation
var mycounter = 0;
var quotations = new Array()
quotations[mycounter]= "The Amon Audio interface is versatile, usable on-location or in a studio, plus provides great sound quality at a reasonable price.<br/><b>PC.com</b>"; mycounter = mycounter+1;
quotations[mycounter]= "Overall, the sound card is amazing.<br />The quality is rock solid.<br/><b>Trustmixer</b>"; mycounter = mycounter+1;
quotations[mycounter]= "BlOW5D is a very good speaker...suitable for home studios and DAW...<br/><b>SoundMaker Magazine</b>"; mycounter = mycounter+1;
quotations[mycounter]= "The (DeuX) sound quality is excellent.<br/><b>Amazon.com user review</b>"; mycounter = mycounter+1;
quotations[mycounter]= "(Quartet) will be an optimal solution for many users<br/><b>Digit-Life</b>"; mycounter = mycounter+1;
quotations[mycounter]= "I thoroughly recommend this product...great for use with Garageband...<br/><b>Customer Review of Primus a25</b>"; mycounter = mycounter+1;


// setup for sequential display
// 		not needed for random display
a=0; var totalq=quotations.length - 1;

function display()
{
// routine used for random display
// 		not needed for sequential display
// a=Math.floor(Math.random()*quotations.length)

// routine to display the text
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",5000)

// decision routine for sequential display
// 		not needed for random display
if (a < totalq) {
	a= a + 1;
	} else {
	a = 0;
	}

}
