$(document).ready(function(){   
  $("#gallery").cycle({	  
	  startingSlide: Math.floor(Math.random()*24)
  }); 
	
  $("#leftarrow").click(function(){
	  $("#gallery").cycle("prev");
  });
  
  $("#rightarrow").click(function(){
	  $("#gallery").cycle("next");
  });
});
