function changepict()
		{
		for (j = 0; j <= 1; j++)
		{
		if (i<100)
		{
		document.getElementById('animation').src="h1.JPG"
		document.getElementById('animation3').src="h3.JPG"
		document.getElementById('animation2').src="animate1.gif"
		i++
		}
		else if (i<200)
		{
		document.getElementById('animation').src="h2.JPG"
		document.getElementById('animation3').src="h4.JPG"
		document.getElementById('animation2').src="animate1.gif"	
		i++
		}
		else if (i<300)
		{
		document.getElementById('animation').src="h1.JPG"
		document.getElementById('animation3').src="h5.JPG"
		document.getElementById('animation2').src="animate3.gif"	
		i++
		}
		else if (i<400)
		{
		document.getElementById('animation').src="h2.JPG"
		document.getElementById('animation3').src="h4.JPG"
		document.getElementById('animation2').src="animate4.gif"	
		i++
		}
		else
		{
		document.getElementById('animation').src="h1.JPG"
		document.getElementById('animation3').src="h3.JPG"
		document.getElementById('animation2').src="animate1.gif"
		i=0
		}
		}
		}

		