	/**
	 * TLC JavaScript
	 *
	 * @depend jquery.js
	 */

jQuery(document).ready(function ($) {
	// Add toggling to links (frontpage)
	$('.home .sub-menu a').click(function (e) {
		e.preventDefault();
		$(this).parent().addClass('active')
										.siblings().removeClass('active');

		$('.home .promos').children().addClass('hidden');
		$(this.hash).removeClass('hidden');
	});

	// Add toggling to links (week footer)
	$('#week_highlights .days a').click(function (e) {
		e.preventDefault();
		$(this).parent().addClass('active')
										.siblings().removeClass('active');

		$('#week_highlights .day_details').children().addClass('hidden');
		$(this.hash).removeClass('hidden');

		$('#week_highlights').removeClass().addClass(this.hash.replace('#', ''));
	});

	// hide Flash content with JS instead of from the start to fix weird IE bug (7 and 8)
	$('.hidden2').addClass('hidden');
});
