$(document).ready(function() {
  $("#jsddm >  li:has(ul)").addClass("hasSubNav");
  
//SLIDE-DOWN-PANEL
  $("#open").click(function(){
    $("div#panel").slideDown("slow");
  });  
  $("#close").click(function(){
    $("div#panel").slideUp("slow");  
  });    
  $("#toggle a").click(function () {
    $("#toggle a").toggle();
  });
  
  $(".scrollable").scrollable({circular: true});   
  $('#slideshow').cycle({
  fx: 'fade'
});
  
    $("#twitter").getTwitter({               
    userName: "VargasandVargas",               
    numTweets: 1,               
    loaderText: "Loading tweets...",               
    slideIn: false,               
    showHeading: false,               
    headingText: "Follow Us On Twitter",               
    showProfileLink: false
  });
  
});
