jQuery(document).ready(function() {

	$('#rotate').cycle({
			prev:   '#prev',
			next:   '#next',
			timeout: 0,
			before: onBefore
	});

	function onBefore() {
			$('#caption').html(this.alt);
			$('#count').html($(this).attr('rel'));
	}

	$('#prev').bind("mouseover", function(e){ $('#prev').attr('src','/wp-content/themes/dbphoto+film/images/prev-on.png'); }).bind("mouseout", function(e){ $('#prev').attr('src','/wp-content/themes/dbphoto+film/images/prev.png'); });
	$('#next').bind("mouseover", function(e){ $('#next').attr('src','/wp-content/themes/dbphoto+film/images/next-on.png'); }).bind("mouseout", function(e){ $('#next').attr('src','/wp-content/themes/dbphoto+film/images/next.png'); });

});