// JavaScript Document
<!--

/*
Random Image Script- By JavaScript Kit (http://www.javascriptkit.com) 
Over 400+ free JavaScripts here!
Keep this notice intact please
*/

function random_img(){
	var myimages1=new Array()
	//specify random images below. You can have as many as you wish
	//Size of members_holder.jpg = 220px x 220px
	myimages1[1]="/recyclefund/images/validation_2.jpg"
	myimages1[2]="/recyclefund/images/validation_3.jpg"
	myimages1[3]="/recyclefund/images/validation_4.jpg"
	myimages1[4]="/recyclefund/images/validation_5.jpg"
	myimages1[5]="/recyclefund/images/validation_6.jpg"
	myimages1[6]="/recyclefund/images/validation_7.jpg"
	myimages1[7]="/recyclefund/images/validation_8.jpg"
	myimages1[8]="/recyclefund/images/validation_9.jpg"
	myimages1[9]="/recyclefund/images/validation_10.jpg"
	var ry=Math.floor(Math.random()*myimages1.length)
	if (ry==0)
	ry=1
	document.write('<img src="'+myimages1[ry]+'" border=0 >')
}

