// Rotate Testimonials
var NS4 = (document.layers) ? 1 : 0;
var IE4 = (document.all) ? 1 : 0;

onload = start;

var ar = [];
ar[0] = "\"Great Customer Service...\"";
ar[1] = "\"Friendly and knowledgeable customer service. Quick quotes and confirmations with accurate order completion/ship date.\"";
ar[2] = "\"We have purchased from Nagel Paper for several years and have always received product on time or before and everyone is...\"";
ar[3] = "\"We have been a customer of Nagel Paper for a couple of years. We have always enjoyed their customer service and fast shipping...\"";
ar[4] = "\"Nagel Paper has been able to cut the lead time in half from our previous supplier. Very professional approach to providing...\"";

var num = 0;

function start()
{
	num = 0;
	setInterval("update()", 4000);
}

function update() 
{
	display("banner", ar[num]);
	num++;

	if(num >= ar.length) 
	{
		num = 0;
	}
}

function display(id, str)
{
	if (NS4)
	{
    		with (document[id].document)
		{
			open();
			write(str);
			close();
		}
	}
	else
	{
		document.getElementById(id).innerHTML = str;
    		//document.all[id].innerHTML = str;
	}
}