// JavaScript Document
if (document.images )

{

 if (document.images)
   {
     image_off= new Image(100,100);
     image_off.src="pics/nav/left_img1.gif";  

     image1= new Image(100,100);
     image1.src="pics/house_details/photo3.jpg";
     image2= new Image(100,100);
     image2.src="pics/house_details/photo7.jpg";
     image3= new Image(100,100);
     image3.src="pics/house_details/photo6.jpg";
     image4= new Image(100,100);
     image4.src="pics/house_details/photo10.jpg";
     image5= new Image(100,100);
     image5.src="pics/house_details/photo9.jpg";
     image6= new Image(100,100);
     image6.src="pics/house_details/photo1.jpg";
     image7= new Image(100,100);
     image7.src="pics/house_details/photo2.jpg";
     image8= new Image(100,100);
     image8.src="pics/house_details/photo4.jpg";
     image9= new Image(100,100);
     image9.src="pics/house_details/photo8.jpg";
     image11= new Image(100,100);
     image11.src="pics/house_details/photo5.jpg";
     image12= new Image(100,100);
     image12.src="pics/house_details/photo11.jpg";
	 }

function change1(picName,imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + ".src");
      document[picName].src= imgOn;
    }
 }


}
function turnOn (imgName) {
	if (document.images)
	document [imgName].src = eval (imgName + "On.src");
}

function turnOff (imgName) {
	if (document.images)
	document [imgName].src = eval (imgName + "Off.src");
}

function sectionturnOn (imgName,img) {
	if (document.images)
	document [imgName].src = eval (img + "On.src");
}

function sectionturnOff (imgName,img) {
	if (document.images)
	document [imgName].src = eval (img + "Off.src");
}
