$(document).ready(function() {
  
CACHE IMAGES
 var images = [ 'home-bg.jpg', 'business-bg.jpg', 'life-bg.jpg', 'teen-bg.jpg', 'niche-bg.jpg', 'auto-bg.jpg', 'homeAutoBtn-over.jpg', 'homeHomeBtn-over.jpg', 'homeBusBtn-over.jpg', 'homeTeenBtn-over.jpg', 'homeLifeBtn-over.jpg', 'homeNicheBtn-over.jpg' ];
  jQuery.each(images, function(i) {
    images[i] = new Image();
    images[i].src = this;
  });

  
  
 //TWITTER
  $("#twitter").getTwitter({               
    userName: twitterName,               
    numTweets: 1,               
    loaderText: "Loading tweets...",               
    slideIn: true,               
    showHeading: true,               
    headingText: "Follow Us On Twitter",               
    showProfileLink: false         
  });

  
//SLIDE-DOWN-PANEL
  $("#open").click(function(){
    $("div#panel").slideDown("slow");
  });  
  $("#close").click(function(){
    $("div#panel").slideUp("slow");  
  });    
  $("#toggle a").click(function () {
    $("#toggle a").toggle();
  });
  
//SLIDER
 /*  $('#coda-slider-1').codaSlider({
   dynamicArrows: false,
   dynamicTabs: false,
   crossLinking: true,
  });
  $('#autoBtn').mouseenter(function(){
    slideFade('#autoSlide');
  });
  $('#homeBtn').mouseenter(function(){
    slideFade('#homeSlide');
  });
  $('#busBtn').mouseenter(function(){
    slideFade('#busSlide');
  });
  $('#teenBtn').mouseenter(function(){
    slideFade('#teenSlide');
  });
  $('#dealerBtn').mouseenter(function(){
    slideFade('#dealSlide');
  });
  $('#lifeBtn').mouseenter(function(){
    slideFade('#lifeSlide');
  });
  */
  
  function slideFade(divId){
    $('#homeSlides div').stop(true, true);
    $('#homeSlides div:not(' + divId + ')').fadeOut('fast');
    $(divId).fadeIn('fast');
  }
    
});