<!-- Begin
maxPic = 18;

p1 = new Image (144,96);
p1.src = "images/stills/1.jpg";
link1 = "images/stills/hi_res/1.tif.zip";
caption1 = "Godfrey (Colton Boreen) attends to his dying plants.";
credit1 = "Ashley Maile"

p2 = new Image (144,96);
p2.src = "images/stills/2.jpg";
link2 = "images/stills/hi_res/2.tif.zip";
caption2 = "Chester (Michael Kurliak) is up to no good in the toilet.";
credit2 = "Jeff Khonsary"

p3 = new Image (144,96);
p3.src = "images/stills/3.jpg";
link3 = "images/stills/hi_res/3.tif.zip";
caption3 = "Chester (left, Michael Kurliak), Godfrey (Colton Boreen) and Eliza (Katherine Eaton) have declined their invitation to dinner.";
credit3 = "Colin Maskell"

p4 = new Image (144,96);
p4.src = "images/stills/4.jpg";
link4 = "images/stills/hi_res/4.tif.zip";
caption4 = "Eliza (Katherine Eaton) has a date with her paint-by-numbers.";
credit4 = "Jeff Khonsary"

p5 = new Image (144,96);
p5.src = "images/stills/5.jpg";
link5 = "images/stills/hi_res/5.tif.zip";
caption5 = "Chester (Michael Kurliak) discovers the brown egg that will threaten the happy Anderson home.";
credit5 = "Jeff Khonsary"

p6 = new Image (144,96);
p6.src = "images/stills/6.jpg";
link6 = "images/stills/hi_res/6.tif.zip";
caption6 = "Maud (Patti Wotherspoon) prepares the dinner her children will never forget.";
credit6 = "Lynette Gillis"

p7 = new Image (144,96);
p7.src = "images/stills/7.jpg";
link7 = "images/stills/hi_res/7.tif.zip";
caption7 = "Chester (Michael Kurliak) laments his joyless life with music.";
credit7 = "Ashley Maile"

p8 = new Image (144,96);
p8.src = "images/stills/8.jpg";
link8 = "images/stills/hi_res/8.tif.zip";
caption8 = "Chester (right, Michael Kurliak), Godfrey (Colton Boreen) and Eliza (Katherine Eaton) are up bright and early for breakfast.";
credit8 = "Ashley Maile"

p9 = new Image (144,96);
p9.src = "images/stills/9.jpg";
link9 = "images/stills/hi_res/9.tif.zip";
caption9 = "Chester (left, Michael Kurliak), Godfrey (Colton Boreen) and Eliza (Katherine Eaton) don't want rabbits for lunch.";
credit9 = "Jeff Khonsary"

p10 = new Image (144,96);
p10.src = "images/stills/10.jpg";
link10 = "images/stills/hi_res/10.tif.zip";
caption10 = "Godfrey (Colton Boreen) confesses to having indulged in a brown egg.";
credit10 = "Jeff Khonsary"

p11 = new Image (144,96);
p11.src = "images/stills/11.jpg";
link11 = "images/stills/hi_res/11.tif.zip";
caption11 = "Deleted scene: Eliza (Katherine Eaton) seeks comfort from her talking doll.";
credit11 = "Jeff Khonsary"

p12 = new Image (144,96);
p12.src = "images/stills/12.jpg";
link12 = "images/stills/hi_res/13.tif.zip";
caption12 = "Deleted scene: Chester (left, Michael Kurliak) and Godfrey (Colton Boreen) mourn the loss of their cats.";
credit12 = "Ashley Maile"

p13 = new Image (144,96);
p13.src = "images/stills/13.jpg";
link12 = "images/stills/hi_res/13.tif.zip";
caption13 = "Behind-the-scenes: The kids (L to R: Michael Kurliak, Colton Boreen and Katherine Eaton) let loose after a long day on set.";
credit13 = "Amy Belling"

p14 = new Image (144,96);
p14.src = "images/stills/14.jpg";
link14 = "images/stills/hi_res/14.tif.zip";
caption14 = "Behind-the-scenes: Colton Boreen had no qualms about rotting carp in his immediate space.";
credit14 = "Jeff Khonsary"

p15 = new Image (144,96);
p15.src = "images/stills/15.jpg";
link15 = "images/stills/hi_res/15.tif.zip";
caption15 = "Behind-the-scenes: Before the banning of soda on set, the kids (L to R: Michael Kurliak, Colton Boreen and Katherine Eaton) shared many moments of delirious, unbridled happiness.";
credit15 = "Jeff Khonsary"

p16 = new Image (144,96);
p16.src = "images/stills/16.jpg";
link16 = "images/stills/hi_res/16.jpg.zip";
caption16 = "Behind-the-scenes: Director of Photography Amy Belling prepares to shoot.";
credit16 = "Colin Maskell"

p17 = new Image (144,96);
p17.src = "images/stills/17.jpg";
link17 = "images/stills/hi_res/17.tif.zip";
caption17 = "Behind-the-scenes: Director Jamie Travis and Patti Wotherspoon demonstrate remarkably similar posture while preparing for a shot.";
credit17 = "Jeff Khonsary"

p18 = new Image (144,96);
p18.src = "images/stills/18.jpg";
link18 = "images/stills/hi_res/18.tif.zip";
caption18 = "Behind-the-scenes: The Anderson children (L to R: Michael Kurliak, Colton Boreen and Katherine Eaton) demonstrate their adoration for Director Jamie Travis.";
credit18 = "Amy Belling"

count = 1;

function next() {
count++;
if (count > maxPic) {
count = 1;
}
document.getElementById("p").src=eval("p" + count + ".src");
document.getElementById("captions").innerHTML=eval("caption" + count);
document.getElementById("photo_credit").innerHTML="Photo- " + eval("credit" + count);
document.getElementById("still_number").innerHTML= + eval(count) + " of 18 | ";
}

function back() {
count--;
if (count == 0) {
count = maxPic;
}
document.getElementById("p").src=eval("p" + count + ".src");
document.getElementById("captions").innerHTML=eval("caption" + count);
document.getElementById("photo_credit").innerHTML="Photo- " + eval("credit" + count);
document.getElementById("still_number").innerHTML= + eval(count) + " of 18 | ";
}
function link() {
location.href=eval("link" + count);
}

//  End -->

