function returnQueNumber(que, error)
{
	// this returns the que and any error messages
	// you can ignore the error message since that is for debugging (all that glorious fun is just for me)
	// but the que is the returned number for the current photo, you can use
	// this information to set styles for the color of the link so that the number links
	// can change and have an on state as the user moves from one photo to the other.
}

// ----- DO NOT MODIFY ANYTHING BELOW THIS LINE! ----- //
// Ofcourse, unless you know what you are doing        //

var uid = new Date().getTime();
var fp  = new FlashProxy(uid, '..//js/jsgateway/JavaScriptFlashGateway.swf');

function changePhoto(que, onQue, direction)
{
	fp.call('navigatePhotos', que, onQue, direction);
}
