var beforeMsg = "<blockquote><font color=\"#cccccc\" size=\"-1\" face=\"arial\">";
var afterMsg = "<\/font><\/blockquote>";
var msgRotateSpeed = 8000; // Rotate delay in milliseconds
var textStr = new Array();
textStr[5] = "\"It is hard to believe that [The Pottery Co. is] \"live\"! You guys have done a great job and are great to work with. I know you have worked hard to get us live today & we appreciate it.\" ~Janet Johnson, Owner, The Pottery Co.";
textStr[1] = "\"TriDigital is capable of doing so many things and above all, they are great about responding to my requests very quickly. I have thoroughly enjoyed their service. They are good people to work with.\" ~Yasuhiro Kizaki, Owner, Sushi Den Restaurant";
textStr[2] = "\"I think [the Resorts and Great Hotels] site is one of the most professional looking hotel portals I've ever seen!\" ~Greg Bellowe, E-Lodging Solutions";
textStr[3] = "\"WOW! WOW! and WOW again! I cannot believe that you put [The Pottery Co.] site together so quickly and thoroughly. Congratulations! It looks terrific!\" ~Leigh Whittemore, Photographer for The Pottery Co.";
textStr[4] = "\"I just checked out the Bosch Alumni Web site for the first time in quite a while and was absolutely astonished! What a great new design!! And very informative!\" ~Christian Haenel, Bosch-Stiftung";
textStr[0] = "\"TriDig is simply amazing!  You guys whipped out my professional looking logo in record time and totally nailed the website.  You exceeded my expectations and I was up and running with a professional website faster than I ever imagined!  I’ve gotten so many compliments on your work. Thank you so much!\" ~Lisa Crooke, svCFO";
if (document.layers) 
	{
	document.write('<ilayer id="NS4message" height=25 width=100%><layer id="NS4message2" height=25 width=100%><\/layer><\/ilayer>')
temp = 'document.NS4message.document.NS4message2.document.write(beforeMsg + textStr[i++] + afterMsg);'+
'document.NS4message.document.NS4message2.document.close()';
	}
else if (document.getElementById) 
	{
document.write(beforeMsg + '<div id="message" style="position:relative;">IE division<\/div>' + afterMsg);
temp = 'document.getElementById("message").firstChild.nodeValue = textStr[i++];';
	}
else if (document.all) 
	{
document.write(beforeMsg + '<div id="message" style="position:relative;">IE division<\/div>' + afterMsg);
temp = 'message.innerHTML = textStr[i++];';
	}	
var i = 0;
function msgRotate() 
	{
	eval(temp);
	if (i == textStr.length) i = 0;
	setTimeout("msgRotate()", msgRotateSpeed);
	}
window.onload = msgRotate;
