$(document).ready(function() {         
  
 //TWITTER
  $("#twitter").getTwitter({               
    userName: "RossAgencyMA",               
    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();
  });
  
//SLIDESHOW
 $('#slideshow').cycle({ fx: 'fade' });
  
  
//SLIDER
         $('#coda-slider-1').codaSlider({
          dynamicArrows: false,    dynamicTabs: false,     crossLinking: true,                 autoSlide: true,                  autoSlideInterval: 10000,                  autoSlideStopWhenClicked: true           
           
         });
});