function slider() {
  $('.slideshow').cycle({
	             fx: 'scrollLeft', 
          timeout: 6000, 
            delay:  -2000 
  });
}
	         
function hidePlayer() {
  $("#players").hide();
}
	         
function showPlayers() {
  $(this).next("#players").slideToggle(20);
}
