$(document).ready(function() {         
  
// PRE CACHE IMAGES
 var images = [ 'sliderBg.png', 'logo.png', 'locationsBtn.png', 'autoBtn.png', 'homeBtn.png', 'lifeBtn.png', 'commercialBtn.png', 'groupBtn.png', 'twitterImg.png', 'footerBg.png' ];
  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: false,               
    headingText: "Follow Us On Twitter",               
    showProfileLink: true         
  });

  
//SLIDE-DOWN-PANEL
  $("#open").click(function(){
    $("div#panel").slideDown("slow");
  });  
  $("#close").click(function(){
    $("div#panel").slideUp("slow");  
  });    
  $("#toggle a").click(function () {
    $("#toggle a").toggle();
  });
  
$('#prodSlideShow').cycle({ fx: 'scrollRight', timeout: 8000, cleartypeNoBg: true });
$('#slideshow').cycle({ fx: 'fade', random: 1 });
  
  
});
