var IMG = new Array();
IMG[0]=new Image();
IMG[0].src="/images/mountimg/0.jpg";
IMG[1]=new Image();
IMG[1].src="/images/mountimg/1.jpg";
IMG[2]=new Image();
IMG[2].src="/images/mountimg/2.jpg";
IMG[3]=new Image();
IMG[3].src="/images/mountimg/3.jpg";
IMG[4]=new Image();
IMG[4].src="/images/mountimg/4.jpg";
var cnt=0;

function Start(){
	if(document.getElementById){
	document.getElementById("sd").src = IMG[cnt].src;
	cnt++;
	if( cnt <= 4 ){
		var Timer1=setTimeout("Start()",6000);
		}else{
		clearTimeout(Timer1);
		cnt=0;
		var Timer1=setTimeout("Start()",6000);
		
		}
	}
}

