<?php 
	
	include('initialize.php');
	include('ScheduleManager.php');
	
	$scheduleManager = new ScheduleManager($databaseConnection);
	$scheduleArray = $scheduleManager->getEvents("date,startTime", "%W, %M %d, %Y");
	
	include('header.php');
	include('leftSide.php');
	
?>
					
					<td valign="top" width="60%">
						
						<!-- Content -->
						<table border="0" cellspacing="5" cellpadding="5" width="100%">
							<tr>
								<td><font class="contentTitleText">Ski Club <?php echo $websiteInfo['currentSeason'] ?> Schedule</font></td>
							</tr>	
							
							<tr>
								<td align="center">
								
									<!-- colored border table -->
									<table bgcolor="#B5C2E4" border="0" cellspacing="0" cellpadding="0" width="90%">
										<tr>
											<td>
											
												<!-- Schedule Table -->
												<table cellspacing="1" cellpadding="4" border="0" width="100%">
													<tr>
														<td bgcolor="#E9E9F3"><b><font class="regularText">Date</font></b></td>
														<td bgcolor="#E9E9F3"><b><font class="regularText">Location</font></b></td>
														<td bgcolor="#E9E9F3"><b><font class="regularText">Departure</font></b></td>
														<td bgcolor="#E9E9F3"><b><font class="regularText">Return</font></b></td>
													</tr>
													
													<?php
													
														$index = 0;
														foreach ($scheduleArray as $scheduleInfo)
														{
															if ($index % 2 ==0)
																$bgColor = "#FFFFFF";
															else
																$bgColor = "#EEEEEE";
																
															print "<tr>
																		<td bgcolor='$bgColor'><font class='regularText'>$scheduleInfo[date]</font></td>
																		<td bgcolor='$bgColor'><font class='regularText'>$scheduleInfo[location]</font></td>
																		<td align='right' bgcolor='$bgColor'><font class='regularText'>$scheduleInfo[startTime]</font></td>
																		<td align='right' bgcolor='$bgColor'><font class='regularText'>$scheduleInfo[endTime]</font></td>
																	</tr>";
														}
													?>
												</table>
											
											</td>
										</tr>
									</table>
												
								</td>
							</tr>
							
							<tr>
								<td align="center">
									
									<!-- Notes table -->
									<table border="0" cellspacing="3" cellpadding="3" width="90%">
										<tr>
											<td>
												<?php echo $contentManager->getContent('name', 'Schedule'); ?>
											</td>
										</tr>
									</table>
									<br><br><br>
								</td>
							</tr>
						</table>
						
					</td>
					
<?php include('footer.php'); ?>