var manage = new Array();
  
	manage[0] = "images/wine-country-1.jpg"; 
	manage[1] = "images/wine-country-2.jpg";
	manage[2] = "images/wine-country-3.jpg";
	
	manage[3] = "images/wine-country-4.jpg";
	manage[4] = "images/wine-country-5.jpg";
	manage[5] = "images/wine-country-6.jpg";  
	
	manage[6] = "images/wine-country-7.jpg"; 
	manage[7] = "images/wine-country-8.jpg";
    manage[8] = "images/wine-country-9.jpg";
    manage[9] = "images/special-event-hall-2.jpg";
   
	

var pic = new Array();
  
	pic[0] = "images/wine-country-1a.jpg"; 
	pic[1] = "images/wine-country-2a.jpg";
	pic[2] = "images/wine-country-3a.jpg";
	
	pic[3] = "images/wine-country-4a.jpg";
	pic[4] = "images/wine-country-5a.jpg";
	pic[5] = "images/wine-country-6a.jpg";  
	
	pic[6] = "images/wine-country-7a.jpg"; 
	pic[7] = "images/wine-country-8a.jpg";
    pic[8] = "images/wine-country-9a.jpg";
    pic[9] = "images/special-event-hall-2a.jpg";

var hout = new Array();
  
	hout[0] = "images/wine-country-1al.jpg"; 
	hout[1] = "images/wine-country-2al.jpg";
	hout[2] = "images/wine-country-3al.jpg";
	
	hout[3] = "images/wine-country-4al.jpg";
	hout[4] = "images/wine-country-5al.jpg";
	hout[5] = "images/wine-country-6al.jpg";  
	
	hout[6] = "images/wine-country-7al.jpg"; 
	hout[7] = "images/wine-country-8al.jpg";
    hout[8] = "images/wine-country-9al.jpg";
    hout[9] = "images/special-event-hall-2al.jpg";

function showPic(image)
	{
    	document.getElementById("Pic").src = manage[image];
    	document.getElementById("image" + image).src = pic[image];
    	 
	}
	
function thub(num)
{
    document.getElementById("image" + num).src = hout[num];
}
	
	
	

	
