$(document).ready(function() {
	/*var sidebarHeight = $('#content').css('height');
	$('#sidebar').css('height', sidebarHeight);*/
	
	$('li.season ul').hide();
	
	$('li.season a.season').click(function() {
		$('li.season ul').hide('slow');
		
		if ($(this).parent().children('ul').css('display') == 'none') {
			$(this).parent().children('ul').show('slow');
		} else {
			$(this).parent().children('ul').hide('slow');
		}
		
		//$(this).parent().children('ul').toggle('slow');
		return false;
	});
});
