// 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 "";
} ?>