function randomImage(img, paths)
{
	document.getElementById(img).src=paths[Math.round(Math.random() * (paths.length-1))];
}