$(document).ready(function() {
  
/* CACHE IMAGES
 var images = [ 'image1.jpg', 'image2.png', 'image3.gif' ];
  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
         });
 //SLIDESHOW
$('.miniScroller').cycle({
  fx: 'fade'
}); 
});
