<!--
/*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/

function random_imglink(){
  var images=new Array()
  //specify random images below. You can have as many as you wish
		images[1]="../../../Gfx/Country_Pics/Italy/Italy.jpg";
		images[2]="../../../Gfx/Country_Pics/Italy/Italy.jpg";
		images[3]="../../../Gfx/Country_Pics/Italy/Milan5.jpg";
		
	//MouseOver part
	  var imagesTitle=new Array()
  //specify random images below. You can have as many as you wish
		imagesTitle[1]="Italy";
		imagesTitle[2]="Italy";
		imagesTitle[3]="Milan";

  var ry=Math.floor(Math.random()*images.length)

  if (ry==0)
     ry=1
     document.write('<img height="158.5" width="100%" src="'+images[ry]+'" border=0 title="'+imagesTitle[ry]+'">')
}

  random_imglink()