Cast
Zombie Vampires
Farmer
Dog Walker
Joggers
Taxi Driver
Dog
Gina Purcell
Steve Bosworth
Anna Chapman
Sam Dixon
Naomi Marsh
Mayble Pitt
Kate Sweeney
Tracey Bodenham
Rebecca Fewings
David Workman
Carina Roberts
Amy Cummins
Rich Jeffery
Jan Harrison
Barney
// background changer
try {
if ($page == '404' ) {
$background_image = "backgrounds/".$page.".jpg";
} else if ($expl[count($expl)-2] == "episode") {
$background_image = "backgrounds/episode".$page.".jpg";
$background_image_alt = "../backgrounds/episode".$page.".jpg";
} else if ($expl[count($expl)-2] == "gallery") {
$background_image = "backgrounds/gallery.jpg";
$background_image_alt = "../backgrounds/gallery.jpg";
} else if ($expl[count($expl)-2] == "credits") {
$background_image = "backgrounds/credits.jpg";
$background_image_alt = "../backgrounds/credits.jpg";
} else if ($expl[count($expl)-2] == "character") {
$background_image = "backgrounds/".$page.".jpg";
$background_image_alt = "../backgrounds/".$page.".jpg";
} else {
$background_image = "backgrounds/".$page.".jpg";
}
} catch (Exception $e) {
$background_image = $sitelocation."/backgrounds/".$page.".jpg";
}
if (file_exists($background_image)) {
if (isset($background_image_alt)) $background_image = $background_image_alt;
print "";
} else {
print "";
} ?>