$(function(){
					 
	function resetContent() {
    $('#browseHighlights').hide();
		$('#browseEvents').hide();
		$('#browseArtists').hide();
		$('#text').hide();
		$('#day1').hide();
		$('#day2').hide();
		$('#day3').hide();
		$('#day4').hide();
		$('#day5').hide();
		$('#day6').hide();
		$('#day7').hide();
		$('#day8').hide();
		$('#day9').hide();
		$('#day10').hide();
		$('#day11').hide();
		$('#day12').hide();
  }		
	
	$('#text').ajaxStart(function() {
		resetContent();
    $('#loading').show();
	}).ajaxComplete(function() {
		$('#loading').hide();
		$('#text').fadeIn(200);
	});

					 
	$('a.site').click(function() {
		$target = $(this).val();
		$content = this.href;
		$('#text').load($content);
		$.post('process.php?target='+$content);
		return false;
	});
	
	$('a.event').click(function() {
		$target = $(this).val();
		$content = this.href;
		$('#text').load($content);	
		$.post('process.php?target='+$content);
		return false;
	});
	
	$('a#highlights').click(function() {
		resetContent();
		$('#browseHighlights').show();
		return false;
	});
	
	$('a#events').click(function() {
		resetContent();
		$('#browseEvents').show();
		return false;
	});
	
	$('a#artist').click(function() {
		resetContent();
		$('#browseArtists').show();
		return false;
	});
	
	$('#days a').click(function() {
		$day = $(this).attr('class');
		resetContent();
		$('#'+$day).show();
		return false;
	});
});
