$(document).ready(function() {
    $('#cycleDiv').cycle({
		//pager: '#cycleDiv',
		fx: 'fade',
		after: onAfter,
		prev: '#prev',
		next: '#next'
	});
});
function onAfter(curr,next,opts) {
	var msg = (opts.currSlide + 1) + ' / ' + opts.slideCount;
	$('.imageNumber').html(msg);
};
