<!--
	function random_content(){
	var mycontent=new Array()
	//specify random content below, just copy a line and increase the number by 1 to add new images
	mycontent[1]='<img src="../images/random/1.jpg" border="0">'
	mycontent[2]='<img src="../images/random/2.jpg" border="0">'
	mycontent[3]='<img src="../images/random/3.jpg" border="0">'
	mycontent[4]='<img src="../images/random/4.jpg" border="0">'
	mycontent[5]='<img src="../images/random/5.jpg" border="0">'
	mycontent[6]='<img src="../images/random/6.jpg" border="0">'
	mycontent[7]='<img src="../images/random/7.jpg" border="0">'
	mycontent[8]='<img src="../images/random/8.jpg" border="0">'
	mycontent[9]='<img src="../images/random/9.jpg" border="0">'
	mycontent[10]='<img src="../images/random/10.jpg" border="0">'
	mycontent[11]='<img src="../images/random/11.jpg" border="0">'
	mycontent[12]='<img src="../images/random/12.jpg" border="0">'
	mycontent[13]='<img src="../images/random/13.jpg" border="0">'
	//end
	var ry=Math.floor(Math.random()*mycontent.length)
	if (ry==0)
	ry=1
	document.write(mycontent[ry])
	}
//-->
