$(document).ready(function(){
						   
  $(".menu01").mouseover(function(){
  $("#news").fadeIn("slow");
  });
  $(".menu01").mouseout(function(){
  $("#news").fadeOut("slow");
  });
  
  $(".menu02").mouseover(function(){
  $("#bio").fadeIn("slow");
  });
  $(".menu02").mouseout(function(){
  $("#bio").fadeOut("slow");
  });
  
  $(".menu03").mouseover(function(){
  $("#discog").fadeIn("slow");
  });
  $(".menu03").mouseout(function(){
  $("#discog").fadeOut("slow");
  });
  
  $(".menu04").mouseover(function(){
  $("#dates").fadeIn("slow");
  });
  $(".menu04").mouseout(function(){
  $("#dates").fadeOut("slow");
  });
  
  $(".menu05").mouseover(function(){
  $("#store").fadeIn("slow");
  });
  $(".menu05").mouseout(function(){
  $("#store").fadeOut("slow");
  });
  
  $(".menu06").mouseover(function(){
  $("#contact").fadeIn("slow");
  });
  $(".menu06").mouseout(function(){
  $("#contact").fadeOut("slow");
  });
  
  $(".menu07").mouseover(function(){
  $("#gallery").fadeIn("slow");
  });
  $(".menu07").mouseout(function(){
  $("#gallery").fadeOut("slow");
  });

  $(".close").click(function(){
  $("#news_content").animate({height:0,width:0,left:"50%",marginLeft:-290,top:475,padding:0,border:0},"slow");
  $("#bio_content").animate({height:0,width:0,left:"50%",marginLeft:212,top:432,padding:0,border:0},"slow");
  $("#discog_content").animate({height:0,width:0,left:"50%",marginLeft:-25,top:360,padding:0,border:0},"slow");
  $("#dates_content").animate({height:0,width:0,left:"50%",marginLeft:-320,top:285,padding:0,border:0},"slow");
  $("#store_content").animate({height:0,width:0,left:"50%",marginLeft:143,top:305,padding:0,border:0},"slow");
  $("#contact_content").animate({height:0,width:0,left:"50%",marginLeft:-105,top:255,padding:0,border:0},"slow");
  $("#gallery_content").animate({height:0,width:0,left:"50%",marginLeft:300,top:290,padding:0,border:0},"slow");
  });


});
