quotes = new Array(8);

quotes[0]="../img/indexquotes/quote1.png";

quotes[1]="../img/indexquotes/quote2.png";

quotes[2]="../img/indexquotes/quote3.png";

quotes[3]="../img/indexquotes/quote4.png";

quotes[4]="../img/indexquotes/quote5.png";

quotes[5]="../img/indexquotes/quote6.png";

quotes[6]="../img/indexquotes/quote7.png";

quotes[7]="../img/indexquotes/quote8.png";

function quoteMover(){
	var whichquote=Math.floor(Math.random()*(quotes.length));
	document.getElementById('quoteimg').src = quotes[whichquote]
	
	setTimeout("quoteMover()", 20000);
}
