var index = 0;
//var filePath = 'http://192.168.10.41/wordpress/wp-content/themes/newtownbuilders_002/images/';
var filePath = null;

//Function to change the main image on bottom image click
function onImgClick(id){
	index = id;
	filePath = document.getElementById('path').value;
	document.getElementById('mimg').src = filePath + index + '.jpg';
}

//Navigating to the previous main images  
function onPreviousClick(){
	filePath = document.getElementById('path').value;
	if(index<=1){
		index = 8;
	}else{
		index = index - 1;
	}	
	document.getElementById('mimg').src = filePath + index + '.jpg';
}

//Navigating to the next main images  
function onNextClick(){
	filePath = document.getElementById('path').value;
	if(index==0){
		index = 2;
	}else if(index>=8){
		index = 1;
	}else{
		index = index + 1;
	}
	document.getElementById('mimg').src = filePath + index + '.jpg';
}

