/*********************************************************************************************************************************/
/**************************************************** STARTS: ROTATE IMAGES ******************************************************/
/*********************************************************************************************************************************/

	function random_imglink()
	{
		var myimages=new Array()
		//specify random images below. You can have as many as you wish
		myimages[1]="images/under_construction_01.bmp"
		myimages[2]="images/under_construction_02.jpg"
		myimages[3]="images/under_construction_03.jpg"
		myimages[4]="images/under_construction_04.jpg"
		myimages[5]="images/under_construction_05.bmp"
		myimages[6]="images/under_construction_06.gif"
		
		var ry = Math.floor(Math.random()*myimages.length)
		if (ry==0)
			ry=1
		document.write('<img src="'+myimages[ry]+'" alt="Under Construction" vspace="5" hspace="5" />')
	}
