// background changer
try {
if ($page == '404' ) {
$background_image = "backgrounds/".$page.".png";
} else if ($expl[count($expl)-2] == "episode") {
$background_image = "backgrounds/episode".$page.".png";
$background_image_alt = "../backgrounds/episode".$page.".png";
} else if ($expl[count($expl)-2] == "credits") {
$background_image = "backgrounds/credits.png";
$background_image_alt = "../backgrounds/credits.png";
} else if ($expl[count($expl)-2] == "character") {
$background_image = "backgrounds/".$page.".png";
$background_image_alt = "../backgrounds/".$page.".png";
} else {
$background_image = "backgrounds/".$page.".png";
}
} catch (Exception $e) {
$background_image = $sitelocation."/backgrounds/".$page.".png";
}
if (file_exists($background_image)) {
if (isset($background_image_alt)) $background_image = $background_image_alt;
print "";
} else {
print "";
} ?>