//////////////////////////////////
// Images changes
function changeImage(layer,imgName,imgObj) {
	if (document.images) {
		if (document.layers && layer!=null) eval('document.'+layer+'.document.images["'+imgName+'"].src = '+imgObj+'.src')
		else document.images[imgName].src = eval(imgObj+".src")
	}
}
if (document.images) {	
chill1 = new Image();  
chill1.src = "../../img/photos/chill1.jpg";

chill2 = new Image();  
chill2.src = "../../img/photos/chill2.jpg";

chill3 = new Image();  
chill3.src = "../../img/photos/chill3.jpg";

chill4 = new Image();  
chill4.src = "../../img/photos/chill4.jpg";

eat1 = new Image();  
eat1.src = "../../img/photos/eat1.jpg";

eat2 = new Image();  
eat2.src = "../../img/photos/eat2.jpg";

eat3 = new Image();  
eat3.src = "../../img/photos/eat3.jpg";

eat4 = new Image();  
eat4.src = "../../img/photos/eat4.jpg";

garden1 = new Image();  
garden1.src = "../../img/photos/garden1.jpg";

garden2 = new Image();  
garden2.src = "../../img/photos/garden2.jpg";

garden3 = new Image();  
garden3.src = "../../img/photos/garden3.jpg";

garden4 = new Image();  
garden4.src = "../../img/photos/garden4.jpg";

garden5 = new Image();  
garden5.src = "../../img/photos/garden5.jpg";

play1 = new Image();  
play1.src = "../../img/photos/play1.jpg";

play2 = new Image();  
play2.src = "../../img/photos/play2.jpg";

play3 = new Image();  
play3.src = "../../img/photos/play3.jpg";

play4 = new Image();  
play4.src = "../../img/photos/play4.jpg";

play5 = new Image();  
play5.src = "../../img/photos/play5.jpg";

play6 = new Image();  
play6.src = "../../img/photos/play6.jpg";

sleep1 = new Image();  
sleep1.src = "../../img/photos/sleep1.jpg";

sleep2 = new Image();  
sleep2.src = "../../img/photos/sleep2.jpg";

sleep3 = new Image();  
sleep3.src = "../../img/photos/sleep3.jpg";

sleep4 = new Image();  
sleep4.src = "../../img/photos/sleep4.jpg";

wash1 = new Image();  
wash1.src = "../../img/photos/wash1.jpg";

wash2 = new Image();  
wash2.src = "../../img/photos/wash2.jpg";

wash3 = new Image();  
wash3.src = "../../img/photos/wash3.jpg";

wash4 = new Image();  
wash4.src = "../../img/photos/wash4.jpg";

work1 = new Image();  
work1.src = "../../img/photos/work1.jpg";

work2 = new Image();  
work2.src = "../../img/photos/work2.jpg";

work3 = new Image();  
work3.src = "../../img/photos/work3.jpg";

work4 = new Image();  
work4.src = "../../img/photos/work4.jpg";
}
function imageSwap()
{
if (document.images)
	{
		for (var Count=0; Count < imageSwap.arguments.length; Count++){
		swap=imageSwap.arguments[Count];
		destinationName=swap.substring(0,swap.indexOf(":"))	;
		sourceName=swap.substring(swap.indexOf(":")+1,swap.length);
		document[destinationName].src = eval(sourceName + ".src");
		}
	}
}