var divs = '#home, #header, #lineup, #tickets, #venue, #about, #contact';
$(document).ready(function() {
	$('#header, #lineup, #tickets, #venue, #about, #contact').hide();
	$('#nav a, #content a').click(function(e){
		e.preventDefault();
		var that = this;
		$(divs).hide();
		$(that.href.split('.php')[1]).fadeIn("slow");
		console.log(that.href.split('.php')[1]);
		});
});
