	function intpad (v)
	{
		if (v < 10)
		{
			new_v = '00' + v;
			return new_v;
		}

		if (v < 100 && v > 9)
		{
			new_v = '0' + v;
			return new_v;
		}
		
		return v;
	}

	function shot (s)
	{
		i = document.getElementById('mainshot');
		
		if (s == '1')
		{
			i.src = 'shots/200x150/' + intpad(shot1) + '.jpg';
			mainshot = shot1;
			return;
		}
		
		if (s == '2')
		{
			i.src = 'shots/200x150/' + intpad(shot2) + '.jpg';
			mainshot = shot2;
			return;
		}
	
		if (s == '3')
		{
			i.src = 'shots/200x150/' + intpad(shot3) + '.jpg';
			mainshot = shot3;
			return;
		}
	}

	function nextpic ()
	{
		i = document.getElementById('mainshot');

		if (mainshot < totalshot)
		{
			mainshot++;
		}
		else
		{
			mainshot = 1;
		}

		i.src = 'shots/200x150/' + intpad(mainshot) + '.jpg';
	}

	function showpic ()
	{
		window.location.href = 'viewshot.html?id=24&vid=' + mainshot;
	}
		
