	function ini(){
			
			tn = document.getElementById("IMG_TN");
			links = tn.getElementsByTagName("a");
			
				for(o=0;o<links.length;o++){
					
						//if(o==0) changeImg(links[o].id);
						links[o].onclick = function(){
						return changeImg(this.id);}
				}
	//alert(links[0].id);
	//changeImg(links[0].id);
	
	//document.getElementById("M_IMG").onmousedown = function(){
		//rightButDis();};
	}
	
	function rightButDis()
{
	if (event.button == 2) {
		alert("The pictures on this website are the property of Kavi.\nGive me a call on 07883 79 22 31 if you wish to use or reproduced any of them.\n\nThanks\n\nKavi");
	}
}
	

function showPic (whichpic) { 

            if (document.getElementById) { 

                        document.getElementById('M_IMG').src = whichpic.href; 

                      /*  if (whichpic.title) { 

                                    document.getElementById('desc').childNodes[0].nodeValue = whichpic.title; 

                        } else { 

                                    document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 

                        } 
						*/
                        return false; 

            } else { 

                        return true; 

            } 

}
	
	
	
	function changeImg(obj)
	{
		//alert(obj);
		temObjArr = obj.split("*");
		imgPlace = temObjArr[1]-1;
		//if(imgPlace=="") imgPlace = 1;
		makeFlash(imageArr[imgPlace])
		//makeFlash(obj);

	}
	
	window.onload = ini;