var i = 0;
function show(){
	var img_rnd = new Array ("1.png","2.png","3.png","4.png","5.png","6.png","7.png")
	
	if(i > 6){
		i = i - 7;
	}
	document.getElementById('random_img').innerHTML = '<img src="Images/random_images/' + img_rnd[i] + '" alt="Random image" />';
	i++;
	t = setTimeout('show()',5000);
}
