// Javascript file created for changing 
// customer feedback snippets

// Create by Mat Way: 12/05/05


var Snippet = new Array(8);
Snippet[0] = '"Superfast delivery, great product. Thanks A+"';
Snippet[1] = '"Wow what can I say. Won Sunday here by Wednesday - great communication AAAAA+"';
Snippet[2] = '"Wonderful seller, fast delivery and no hassle. thanks man."';
Snippet[3] = '"Good transaction. Nicely packed. Thanks a heap!"';
Snippet[4] = '"The product was sent with new batteries, works perfectly, thanks Chris."';
Snippet[5] = '"Quality item, Great Sales people, Very friendly, Top Ebayer Highly recommend A+"';
Snippet[6] = '"Quick communication (called me personally), very polite, and quick dispatch! A+"';
Snippet[7] = '"A smooth transaction, good product.Thank you. Would deal with again. AAA+++"';

i = 0;

function writeSnippet()
	{
	if(i == 7)
		{
		i = 0;
		}
	
	sDiv.innerHTML = Snippet[i = i + 1];
	setTimer();
	}
	
function setTimer()
	{
	window.setTimeout("writeSnippet()", 10000);
	}
	
timerID = window.setTimeout("writeSnippet()", 10000);
		

// Styles applied
document.write('<center><font style="font-size: 7pt;">');
document.write('<b>What our customers<br> say about us:</b><br>');
document.write('<i><div id="sDiv" name="sDiv">');

document.write(Snippet[0])

document.write('</div></i>');
document.write('<a href="http://feedback.ebay.com.au/ws/eBayISAPI.dll?ViewFeedback&userid=chris-from-1800" target="_blank">Click here for more...</b></a>');

// Styles capped at end
document.write('</font></center>');