$(document).ready(function() {
  
/* CACHE IMAGES */
 var images = [ 'autoBtn.jpg', 'homeBtn.jpg', 'busBtn.jpg', 'healthBtn.jpg', 'lifeBtn.jpg' ];
  jQuery.each(images, function(i) {
    images[i] = new Image();
    images[i].src = this;
  });

  
  
//SLIDE-DOWN-PANEL
  $("#open").click(function(){
    $("div#panel").slideDown("slow");
  });  
  $("#close").click(function(){
    $("div#panel").slideUp("slow");  
  });    
  $("#toggle a").click(function () {
    $("#toggle a").toggle();
  });
  
  $('#busBtn').mouseenter(function(){
    slideFade('#busSlide');
  });
  $('#autoBtn').mouseenter(function(){
    slideFade('#autoSlide');
  });
  $('#homeBtn').mouseenter(function(){
    slideFade('#homeSlide');
  });
   $('#lifeBtn').mouseenter(function(){
     slideFade('#lifeSlide');
   });
   $('#healthBtn').mouseenter(function(){
     slideFade('#healthSlide');
   });
  
  
  function slideFade(imgId){
    $('#homeSlides img').stop(true, true);
    $('#homeSlides  img:not(' + imgId + ')').fadeOut('fast');
    $(imgId).fadeIn('fast');
  }
  
});
