function random_img()
{
	var src = arguments[Math.floor(Math.random() * arguments.length)];
	document.write("<img src=\"" + src + "\"/>");
}

