$(document).ready(function() {

	// Accordion Demo #1
	$('#accordion1').accordionza({
		autoPlay: true,
		captionDelay: 1000,
		captionEasing: 'easeOutBounce',
		captionHeight: 40,
		captionHeightClosed: 10,
		navKey: true,
		slideDelay: 4000
	});
  
  /*$('.slide_handle').click(function(){
	$('.slide_handle').css('background','url(wp-content/themes/twentyeleven/images/handles3.png)');
})*/

  $(function(){
    $('#scrollbar1').tinyscrollbar({
      sizethumb: 110
    });
  });

  /**
   * Toggle/collapse pour les textes cachés
   */
  $("div.text-cache-content").hide();
  //toggle the componenet with class msg_body
  $("ul.text-cache li").click(function()
  {			    
    $(this).find('div.text-cache-content').slideToggle(500);
  });

});

