
  	$(function() {
  		  $("#showcase_right").showcase({
                animation: { type: "fade", interval: 8000, speed: 2000  },
                titleBar: { enabled: false },
                navigator: { autoHide: false }
            });
  	});

  		
  $(document).ready(function(){
     $("#panel, .content").hide(); //hides the panel and content from the user
     $('#tab').toggle(function(){ //adding a toggle function to the #tab
        $('#panel').stop().animate({width:"335px", opacity:0.9}, 300, function() {//sliding the #panel to 400px
  	  $('.content').fadeIn('slow'); //slides the content into view.
  	  });  
     },
     function(){ //when the #tab is next cliked
     $('.content').fadeOut('slow', function() { //fade out the content 
        $('#panel').stop().animate({width:"0", opacity:0.1}, 300); //slide the #panel back to a width of 0
  	  });
     });
  });
  
  $(document).ready(function(){
     $("#panel2, .content2").hide(); //hides the panel and content from the user
     $('#tab2').toggle(function(){ //adding a toggle function to the #tab
        $('#panel2').stop().animate({width:"335px", opacity:0.9}, 300, function() {//sliding the #panel to 400px
  	  $('.content2').fadeIn('slow'); //slides the content into view.
  	  });  
     },
     function(){ //when the #tab is next cliked
     $('.content2').fadeOut('slow', function() { //fade out the content 
        $('#panel2').stop().animate({width:"0", opacity:0.1}, 300); //slide the #panel back to a width of 0
  	  });
     });
  });

  $(document).ready(function() {
   $('.mover').hide();
   $('#slick-toggle').click(function() {
     $('.mover').toggle(400);
     return false;
   });
  });  
