$(document).ready(function() {
	// Change header image based on time of day
	today = new Date();
	currentHour = today.getHours();

	if (currentHour > 20 || currentHour < 7)
	{
		$('#header').addClass('night');
		$('#header').removeClass('day');
	}
});
