/////////////////////////////////////////////////////
//	Purple Monkey
//
//  Random image swap
//
//Created By: Kate Biernacka
//  Created On: 3/22/2006
//
//	Last Modified On: 3/22/2006
//	Last Modified By: Kate Biernacka
/////////////////////////////////////////////////////

function swapImage(location,num_images)
 {
 if(document.getElementById)
   {
   		if(location == "home"){
			   var num=Math.floor(Math.random() * num_images) + 1;
			   var photo=document.getElementById("swap_photo");
			   var source="/_resources/images/home/swap_photos/testimonials"+num+".jpg";
			   photo.src=source;
			
		}else{
			   var num=Math.floor(Math.random() * num_images) + 1;
			   var photo=document.getElementById("swap_photo");
			   var source="/_resources/images/interior/swap_photos/"+location+"/testimonials"+num+".jpg";
			   photo.src=source;
		}
   }
 
 }


