
if (document.images) 
	{ // Preloaded images
		apart1 = new Image();
		apart1.src = "animated_pictures/apartment-opera-vendome-2-2.jpg";
		
		apart2 = new Image();
		apart2.src = "animated_pictures/apartment-marais-rosiers.jpg";
		
		apart3 = new Image();
		apart3.src = "animated_pictures/apartment-montmartre-sacre-coeur.jpg";
		
		apart4 = new Image();
		apart4.src = "animated_pictures/apartment-opera-haussmann.jpg";

		apart5 = new Image();
		apart5.src = "animated_pictures/apartment-convention-vaugirard.jpg";
		
		apart6 = new Image();
		apart6.src = "animated_pictures/apartment-opera-amsterdam.jpg";
		
		apart7 = new Image();
		apart7.src = "animated_pictures/apartment-opera-vendome-2.jpg";
		
		apart8 = new Image();
		apart8.src = "animated_pictures/apartment-marais-turenne.jpg";

		apart9 = new Image();
		apart9.src = "animated_pictures/apartment-opera-vendome-1.jpg";
		
		apart10 = new Image();
		apart10.src = "animated_pictures/apartment-madeleine-champs-elysees.jpg";
		
		apart11 = new Image();
		apart11.src = "animated_pictures/apartment-beaubourg-pompidou.jpg";

		apart12 = new Image();
		apart12.src = "animated_pictures/apartment-bastille-diderot-2.jpg";
		
		apart13 = new Image();
		apart13.src = "animated_pictures/apartment-lakanal-tour-eiffel.jpg";
		
		apart14 = new Image();
		apart14.src = "animated_pictures/apartment-bastille-diderot.jpg";
		}

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

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

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

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

			timeimgs(numb = ++numb);
			}
		}
	}

