﻿$(function() {
	$('.eventswrapper span.date').click(function() {
		var url = $(this).prev().attr('href');
		window.location = url;
	});
	
	$('.eventswrapper h3[data-timeframe], .newswrapper h3[data-timeframe]').each(function() {
		var day = $(this).attr('data-timeframe');
		$('.datecontent td[data-timeframe=' + day + ']').addClass('selected-day');
	});
	
	$('#side-navigation').height($('#content-container').height());
});
