<!--
if (document.images) 
	{ // Preloaded images
		apart1 = new Image();
		apart1.src = "animated_pictures/opera-vendome-1.jpg";
		
		apart2 = new Image();
		apart2.src = "animated_pictures/opera-vendome-2.jpg";
		
		apart3 = new Image();
		apart3.src = "animated_pictures/opera-vendome-3.jpg";
		
		apart4 = new Image();
		apart4.src = "animated_pictures/opera-vendome-4.jpg";
	}

function timeimgs(numb) 
	{ // Reusable timer
		thetimer = setTimeout("imgturn('" +numb+ "')", 3000);
	}

function imgturn(numb) 
	{ // Reusable image turner
		if (document.images) 
		{

			if (numb == "4") 
			{ // This will loop the image
				document["apartments"].src = eval("apart4.src");
				timeimgs('1');
			}

			else 
			{ document["apartments"].src = eval("apart" + numb + ".src");

			timeimgs(numb = ++numb);
			}
		}
	}
// -->
