// Storyboard image sequencing script
// auth: Kurt Jonach, Forth Media

var myIndex=1;
var sceneLast=5;

function bookmarkThis(myUrl, myName)
	{
	if (window.external)
		{
		window.external.AddFavorite(myUrl, myName);
		}
	else
		{ 
		alert("Sorry, your browser does not support this functionality.");
		}
	}

function fmOnChangeScene(myDirection)
	{ //change browser image source for the tag named 'scene'
	if (myDirection=='prev')
		{
		myIndex--;
		if (myIndex < 1)
		//change index to maximum	
			myIndex=sceneLast;
		}
	else
		{
		myIndex++;
		if (myIndex > sceneLast)
		//change index to minimum
			myIndex=1;
		}

	this.document.images["scene"].src="flash/Scene"+myIndex+".jpg";
	}

