// Llamantations cartoon strip (c)2004 Barry Sellers
// Javascript gallery (c)2005 Steve Joynt

var LlamaList = new Array(39);
LlamaList[0] = "water_into_wine.jpg";
LlamaList[1] = "map_of_birmingham.jpg";
LlamaList[2] = "jonah_seaworld.gif";
LlamaList[3] = "burning_bush.gif";
LlamaList[4] = "moses_water.gif";
LlamaList[5] = "jesus_gardening.jpg";
LlamaList[6] = "calm_storm.gif";
LlamaList[7] = "zebedee.jpg";
LlamaList[8] = "stairway.gif";
LlamaList[9] = "moses_test_run.jpg";
LlamaList[10] = "what_not_to_wear.jpg";
LlamaList[11] = "methuselah_birthday.jpg";
LlamaList[12] = "foolish_builder.gif";
LlamaList[13] = "baal_fire.jpg";
LlamaList[14] = "see_you_sunday.jpg";
LlamaList[15] = "five_thousand_left_overs.jpg";
LlamaList[16] = "gps.jpg";
LlamaList[17] = "noah_chihuahuas.gif";
LlamaList[18] = "walk_on_water.jpg";
LlamaList[19] = "fisher_of_men.jpg";
LlamaList[20] = "jericho_council.jpg";
LlamaList[21] = "mustard_seed.jpg";
LlamaList[22] = "jonah_friends.jpg";
LlamaList[23] = "red_sea_crossing.jpg";
LlamaList[24] = "earth_wind_fire.jpg";
LlamaList[25] = "big_bang.jpg";
LlamaList[26] = "elijah_kfc.jpg";
LlamaList[27] = "wwid.jpg";
LlamaList[28] = "david_peeved.gif";
LlamaList[29] = "asda_of_nazareth.jpg";
LlamaList[30] = "young_joshua.jpg";
LlamaList[31] = "jesus_baptism.jpg";
LlamaList[32] = "john_cooking.gif";
LlamaList[33] = "noah_parking.jpg";
LlamaList[34] = "doubting_thomas.jpg";
LlamaList[35] = "lions_den.gif";
LlamaList[36] = "go_one_better.jpg";
LlamaList[37] = "wine_lake.jpg";
LlamaList[38] = "five_thousand.gif";

var LastLlama = 38;
var ThisLlama = 0;
var LlamaReady = false;

function SelectLlama()
{ document.LlamaImg.style.visibility = "hidden";  LlamaReady = false;
 document.LlamaImg.src="http://www.lecsite.org.uk/cartoons/llamantations/frames/" + LlamaList[ThisLlama];
 setTimeout('RevealLlama()',2500);
}

function RevealLlama()
{
 if ( LlamaReady )
 {  document.LlamaImg.style.visibility = "visible";  }
 else
 {
  setTimeout('RevealLlama()',500);
 }
}

function LlamaIsReady()
{
 LlamaReady = true;
}

function NextLlama()
{
 if ( ++ThisLlama > LastLlama )
 {
  ThisLlama = 0;
 }
 SelectLlama();
 return(false);
}

function PrevLlama()
{
 if ( --ThisLlama < 0 )
 {
  ThisLlama = LastLlama;
 }
 SelectLlama();
 return(false);
}

document.write(
 "<table border=\"0\" cellspacing=\"8\" cellpadding=\"8\" bgcolor=\"#FFFFFF\">",
 "<tr>",
 "<td>",
 "<center>",
 "<input type=\"submit\" value=\"<<< Back\" onClick=\"PrevLlama();\">",
 "&nbsp;",
 "<input type=\"submit\" value=\"Next >>>\" onClick=\"NextLlama();\">",
 "</center>",
 "<br>",
 "<center>",
 "<a href=\"http://www.lecsite.org.uk/cartoons/llamantations/\">",
 "<img",
 " name=\"LlamaImg\"",
 " src=\"http://www.lecsite.org.uk/cartoons/llamantations/frames/water_into_wine.jpg\"",
 " border=\"0\"",
 " alt=\"\"",
 " style=\"visibility:visible;filter:revealTrans(duration=2)\"",
 " onLoad=\"LlamaIsReady();\"",
 ">",
 "</a>",
 "<br>",
 "<font size=\"1\">",
 "<a href=\"http://www.lecsite.org.uk/cartoons/llamantations/\">",
 "&copy;2004 Barry Sellers",
 "</a>",
 "</font>",
 "</center>",
 "</td>",
 "</tr>",
 "</table>"
);

SelectLlama();
