
var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='<a class="news">8/9/11: UW-Platteville to start streaming video with Stretch this Fall</a> <br /> <a class="news">8/9/11: Augustana Vikings on board with Stretch for 2011-12</a> <br /> <a class="news">8/2/11: Stretch to provide Cedarville University with GameCentral platform</a>'

quotes[1]='<a class="news">8/9/11: UW-Platteville to start streaming video with Stretch this Fall</a> <br /> <a class="news">8/9/11: Augustana Vikings on board with Stretch for 2011-12</a> <br /> <a class="news">8/2/11: Stretch to provide Cedarville University with GameCentral platform</a>'






var whichquote=Math.floor(Math.random()*(quotes.length))
document.write(quotes[whichquote])

