//
//	Picture swapper logic
//	Written by Jim Adams on 04/09/2005
//

if(document.images) {
	pics = new Array();
	
	pics[1] = new Image();
	pics[1].src = "pics/1.JPG";		// store front
	pics[2] = new Image();
	pics[2].src = "pics/2.JPG";		// nails and manicure
	pics[3] = new Image();
	pics[3].src = "pics/3.JPG";		// pedicure
	pics[4] = new Image();
	pics[4].src = "pics/4.JPG";		// hair salon
	pics[5] = new Image();
	pics[5].src = "images/Pic_043.jpg";		// hair salon
	pics[6] = new Image();
	pics[6].src = "images/Pic_045.jpg";		// hair salon
	pics[7] = new Image();
	pics[7].src = "pics/7.JPG";		// hair products
	pics[8] = new Image();
	pics[8].src = "pics/8.JPG";		// reception area and hair products
	pics[9] = new Image();
	pics[9].src = "pics/9.JPG";		// Make-up and Jane Iredale
	pics[10] = new Image();
	pics[10].src = "images/Pic_031.jpg";	// skin care  pics/10.JPG
	pics[11] = new Image();
	pics[11].src = "pics/11.JPG";	// Make-up and Jane Iredale  pics/11.JPG
	pics[12] = new Image();
	pics[12].src = "pics/12.JPG";	// Aesthetic Treament Area 1
	pics[13] = new Image();
	pics[13].src = "pics/13.JPG";	// Aesthetic Treament Area 2
	pics[14] = new Image();
	pics[14].src = "pics/14.JPG";	// Make-up and Jane Iredale
	pics[15] = new Image();
	pics[15].src = "pics/15.JPG";	// micro dermabrasion
	pics[16] = new Image();
	pics[16].src = "pics/16.JPG";	// micro dermabrasion
	pics[17] = new Image();
	pics[17].src = "pics/17.JPG";	// micro dermabrasion
	pics[18] = new Image();
	pics[18].src = "pics/18.JPG";	// Massage
	pics[19] = new Image();
	pics[19].src = "pics/Krista1.jpg";	// Krista at front desk
	pics[20] = new Image();
	pics[20].src = "pics/ped1.jpg";	// Pedicure area
	pics[21] = new Image();
	pics[21].src = "pics/ped2.jpg";	// Pedicure area
	pics[22] = new Image();
	pics[22].src = "images/Pic_050.jpg";	// Pedicure area
}

function changer(from,to) 
{
	if(document.images) 
	{
		document.images[from].src = pics[to].src;
	}
}

