<?php
date_default_timezone_set("America/Vancouver"); // Set default time zone
 
$time = date("H"); // Set the time in 24 hour format
if (06 <= $time && $time < 20) // 12:00am to 7:00am   Night
   {
include 'includes/top.php';
include 'en/volunteer.inc.php';
include 'includes/bottom.php';
}

else {
include 'includes/top2.php';
include 'en/volunteer.inc.php';
include 'includes/bottom2.php';
}

?>