/*  jQuery Cycle Lite slide show  */

$(document).ready(function() {
  $('#index_photos').cycle()
  
  $('#slideshow2').cycle({
	prev:   '#prev',
	next:   '#next',
	timeout: 0,
	before: onBefore
  });
  
  function onBefore() {
	$('#img_title').html(this.alt);
  }
});