var currentThumb;
var bigImage;
var path = 'images/';
function init(images){
	currentThumb = document.getElementById('t1');
	bigImage = document.getElementById('imagearea');
	for(i=0;i<images.length;i++){
		var temp = new Image();
		temp.src = path + images[i];
	}
}

function changeImage(bigSrc, thumb){
	bigImage.style.backgroundImage = 'url(' + path + bigSrc +')';
	currentThumb.src = path + 'photonav_notactive.gif'
	thumb.src = path + 'photonav_active.gif'
	currentThumb = thumb;
}

function popUp(which){
if(which==1){
	myWin=window.open('stone_house_floor_plan.html', 'floorplan', 'width=500,height=238')
	}else{
	myWin=window.open('deck_house_floor_plan.html', 'floorplan', 'width=500,height=238')
	}

}