function display_news() {
	$("#news").show("slow");
	$("#discography").hide("slow");
	$("#press").hide("slow");
	$("#about").hide("slow");
	$("#contact").hide("slow");
	
	
}
function display_discography() {
	$("#discography").show("slow");
	$("#news").hide("slow");
	$("#press").hide("slow");
	$("#about").hide("slow");
	$("#contact").hide("slow");

}
function display_press() {
	$("#press").show("slow");
	$("#news").hide("slow");
	$("#discography").hide("slow");
	$("#about").hide("slow");
	$("#contact").hide("slow");
	
}
function display_about() {
	$("#about").show("slow");
	$("#discography").hide("slow");
	$("#press").hide("slow");
	$("#news").hide("slow");
	$("#contact").hide("slow");
	
}
function display_contact() {
	$("#contact").show("slow");
	$("#discography").hide("slow");
	$("#press").hide("slow");
	$("#about").hide("slow");
	$("#news").hide("slow");
	
}

