
var quote=new Array()

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


quote[0]= '<img src="images/basoc_main_i_hockey.jpg">',
quote[1]= '<img src="images/basoc_main_i_fencing.jpg">',
quote[2]= '<img src="images/basoc_main_i_swimming.jpg">'

var showquote=Math.floor(Math.random()*(quote.length))
document.write(quote[showquote])

