function showBigImage(imageId){
	var count=0;
	for (count=0;count<=10;count++)	{
		if(imageId==count) document.getElementById('image'+count).style.display = 'block';
		else document.getElementById('image'+count).style.display = 'none';
	}
}