$(document).ready(function(){

	$('#seeallfavartists').click(function() {
		$('#playList').hide();
		$('#gigSched').hide();
		$('#videos').hide();
		$('#photos').hide();
		$('.boxphotos').hide();		
		$('#grafitti').hide();
		$('#comments').hide();
				
		$('.allfavartists').fadeIn("slow");

	});

	$('#hideallfavartists').click(function() {
		$('#playList').fadeIn("slow");
		$('#gigSched').fadeIn("slow");
		$('#videos').fadeIn("slow");
		$('#photos').fadeIn("slow");
		$('.boxphotos').fadeIn("slow");		
		$('#grafitti').fadeIn("slow");
		$('#comments').fadeIn("slow");		
		
		$('.allfavartists').hide();

	});	
	
	$('#seeallfavphotos').click(function() {
		$('#playList').hide();
		$('#gigSched').hide();
		$('#videos').hide();
		$('#photos').hide();
		$('.boxphotos').hide();		
		$('#grafitti').hide();
		$('#comments').hide();
				
		$('.allfavphotos').fadeIn("slow");

	});

	$('#hideallfavphotos').click(function() {
		$('#playList').fadeIn("slow");
		$('#gigSched').fadeIn("slow");
		$('#videos').fadeIn("slow");
		$('#photos').fadeIn("slow");
		$('.boxphotos').fadeIn("slow");		
		$('#grafitti').fadeIn("slow");
		$('#comments').fadeIn("slow");		
		
		$('.allfavphotos').hide();

	});	

	$('#seeallfavvideos').click(function() {
		$('#playList').hide();
		$('#gigSched').hide();
		$('#videos').hide();
		$('#photos').hide();
		$('.boxphotos').hide();		
		$('#grafitti').hide();
		$('#comments').hide();
				
		$('.allfavvideos').fadeIn("slow");

	});

	$('#hideallfavvideos').click(function() {
		$('#playList').fadeIn("slow");
		$('#gigSched').fadeIn("slow");
		$('#videos').fadeIn("slow");
		$('#photos').fadeIn("slow");
		$('.boxphotos').fadeIn("slow");		
		$('#grafitti').fadeIn("slow");
		$('#comments').fadeIn("slow");		
		
		$('.allfavvideos').hide();

	});		

});