<!-- Begin
maxPic = 7;

p1 = new Image (144,96);
p1.src = "/images_saddestboy/production_stills/1.jpg";
link1 = "/images_saddestboy/production_stills/hi_res/1.tif.zip";
caption1 = "Timothy (Benjamin B. Smith), the saddest boy in the world, pays a visit to Dr. Judith D'Angelo.";
credit1 = "Jordan Junck"

p2 = new Image (144,96);
p2.src = "/images_saddestboy/production_stills/2.jpg";
link2 = "/images_saddestboy/production_stills/hi_res/2.tif.zip";
caption2 = "&quot;Go on, Honey&mdash;make a wish. We&apos;re all waiting,&quot; says Barbara (Kirsten Robek) to her son Timothy (Benjamin B. Smith), the saddest boy in the world.";
credit2 = "Eric Milner"

p3 = new Image (144,96);
p3.src = "/images_saddestboy/production_stills/3.jpg";
link3 = "/images_saddestboy/production_stills/hi_res/3.tif.zip";
caption3 = "Of all the subjects, Timothy (Benjamin B. Smith) hates P.E. the most.";
credit3 = "Heidi Buecking"

p4 = new Image (144,96);
p4.src = "/images_saddestboy/production_stills/4.jpg";
link4 = "/images_saddestboy/production_stills/hi_res/4.tif.zip";
caption4 = "Timothy (Benjamin B. Smith), the saddest boy in the world, shields his face from oncoming dodgeballs.";
credit4 = "Heidi Buecking"

p5 = new Image (144,96);
p5.src = "/images_saddestboy/production_stills/5.jpg";
link5 = "/images_saddestboy/production_stills/hi_res/5.tif.zip";
caption5 = "Moments before being kidnapped, Timothy (Benjamin B. Smith) searches for his missing pet cockatiel Whitey.";
credit5 = "Jordan Junck"

p6 = new Image (144,96);
p6.src = "/images_saddestboy/production_stills/6.jpg";
link6 = "/images_saddestboy/production_stills/hi_res/6.tif.zip";
caption6 = "Timothy Higgins (Benjamin B. Smith), the saddest boy in the world, plays Pin the Tail on the Donkey at his ninth birthday party.";
credit6 = "Byron Smith"

p7 = new Image (144,96);
p7.src = "/images_saddestboy/production_stills/7.jpg";
link7 = "/images_saddestboy/production_stills/hi_res/7.tif.zip";
caption7 = "Timothy Higgins (Benjamin B. Smith) is the saddest boy in the world.";
credit7 = "Byron Smith"

count = 1;

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

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

//  End -->

