$(function(){
	 $('#photos_holder').cycle({
        fx:      'scrollHorz',
        timeout:  0,
        prev:    '#prev_photo',
        next:    '#next_photo',
		after:   onAfter
    });

	$("#total_photo").html($(".photo_holder").length);
	$("#current_photo").html("1");

});

function onAfter(curr, next, opts) {
    var index = opts.currSlide;
    $('#prev_photo')[index == 0 ? 'hide' : 'show']();
    $('#next_photo')[index == opts.slideCount - 1 ? 'hide' : 'show']();

	$("#current_photo").html(index+1);

}