$(document).ready(function(){
  // donate
  $(".hover1").mouseover(function(){
  	$(this).attr("src","images/banner_donate-hover.png");
  });
  $(".hover1").mouseout(function(){
  	$(this).attr("src","images/banner_donate.png");
  });
  // events
  $(".hover2").mouseover(function(){
  	$(this).attr("src","images/banner_events-hover.png");
  });
  $(".hover2").mouseout(function(){
  	$(this).attr("src","images/banner_events.png");
  });
  // volunteer
  $(".hover3").mouseover(function(){
  	$(this).attr("src","images/banner_volunteer-hover.png");
  });
  $(".hover3").mouseout(function(){
  	$(this).attr("src","images/banner_volunteer.png");
  });
  // hope house
  $(".hover4").mouseover(function(){
  	$(this).attr("src","images/banner_hopehouse-hover.png");
  });
  $(".hover4").mouseout(function(){
  	$(this).attr("src","images/banner_hopehouse.png");
  });
  // bp4h
  $(".hover9").mouseover(function(){
  	$(this).attr("src","images/banner_blockparty4hope-hover.png");
  });
  $(".hover9").mouseout(function(){
  	$(this).attr("src","images/banner_blockparty4hope.png");
  });
    // donate (small banner)
  $(".hover5").mouseover(function(){
  	$(this).attr("src","images/smallBanner_donate-hover.png");
  });
  $(".hover5").mouseout(function(){
  	$(this).attr("src","images/smallBanner_donate.png");
  });
  // events (small banner)
  $(".hover6").mouseover(function(){
  	$(this).attr("src","images/smallBanner_events-hover.png");
  });
  $(".hover6").mouseout(function(){
  	$(this).attr("src","images/smallBanner_events.png");
  });
  // volunteer (small banner)
  $(".hover7").mouseover(function(){
  	$(this).attr("src","images/smallBanner_volunteer-hover.png");
  });
  $(".hover7").mouseout(function(){
  	$(this).attr("src","images/smallBanner_volunteer.png");
  });
  // hope house (small banner)
  $(".hover8").mouseover(function(){
  	$(this).attr("src","images/smallBanner_hopehouse-hover.png");
  });
  $(".hover8").mouseout(function(){
  	$(this).attr("src","images/smallBanner_hopehouse.png");
  });
});
