
var sources = ["/portals/0/ss/small/flower.jpg",
"/portals/0/ss/small/amanda.jpg",
"/portals/0/ss/small/fight.jpg",
"/portals/0/ss/small/live.jpg",
"/portals/0/ss/small/nails.jpg",
"/portals/0/ss/small/run.jpg"]


function loadImage()
{
	n = parseInt(Math.random()*6);
	document.getElementById("Irandom").style.backgroundImage= "url(" + sources[n] + ")";
}