// background changer
try {
$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 {
// We don't have a home image... comment out for now
// print "";
} ?>