function rand_number(n) {
	var x;
	x=Math.round(Math.random()*100);
	x%=n;
	return x;

}

function boucle_images() {
	var i;
	var intervalle=5000;
	var img = new Array(
		'<a href="images/uber/Augusta.jpg" title="View full size image" target="_blank"><img src="images/uber/thumbs/Augusta.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/uber/Belize-Cream.jpg" title="View full size image" target="_blank"><img src="images/uber/thumbs/Belize-Cream.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/uber/Metro-Aubergine.jpg" title="View full size image" target="_blank"><img src="images/uber/thumbs/Metro-Aubergine.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/uber/Metro-Aubergine-lifestyle.jpg" title="View full size image" target="_blank"><img src="images/uber/thumbs/Metro-Aubergine-lifestyle.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/uber/Metro-Ice.jpg" title="View full size image" target="_blank"><img src="images/uber/thumbs/Metro-Ice.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/uber/Metro-Lava.jpg" title="View full size image" target="_blank"><img src="images/uber/thumbs/Metro-Lava.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/uber/Walnut.jpg" title="View full size image" target="_blank"><img src="images/uber/thumbs/Walnut.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/uber/Wenge.jpg" title="View full size image" target="_blank"><img src="images/uber/thumbs/Wenge.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/3d-solutions/Arcadia-Beech.jpg" title="View full size image" target="_blank"><img src="images/3d-solutions/thumbs/Arcadia-Beech.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/3d-solutions/Arcadia-Walnut.jpg" title="View full size image" target="_blank"><img src="images/3d-solutions/thumbs/Arcadia-Walnut.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/3d-solutions/Eclipse-Cappucino-Gloss.jpg" title="View full size image" target="_blank"><img src="images/3d-solutions/thumbs/Eclipse-Cappucino-Gloss.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/3d-solutions/Hapton-Beech.jpg" title="View full size image" target="_blank"><img src="images/3d-solutions/thumbs/Hapton-Beech.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/3d-solutions/Linea-Oak.jpg" title="View full size image" target="_blank"><img src="images/3d-solutions/thumbs/Linea-Oak.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/3d-solutions/Lumi-White-Gloss.jpg" title="View full size image" target="_blank"><img src="images/3d-solutions/thumbs/Lumi-White-Gloss.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/3d-solutions/Neptune-Black-Gloss.jpg" title="View full size image" target="_blank"><img src="images/3d-solutions/thumbs/Neptune-Black-Gloss.jpg" width="113px" height="81px" alt="View full size image"></a>',
		'<a href="images/3d-solutions/Sheriton-Ivory.jpg" title="View full size image" target="_blank"><img src="images/3d-solutions/thumbs/Sheriton-Ivory.jpg" width="113px" height="81px" alt="View full size image"></a>'

	);

	var nombre_total_images = img.length;
	var i=rand_number(nombre_total_images); 
	document.getElementById("boucle").innerHTML=img[i];
	setTimeout("boucle_images()",intervalle);

}