$(document).ready(function(){
    //$('#photos img').hide();


$('#weddingSlideShow').cycle({ 
    fx:     'fade', 
    speed:  400, 
    next:   '#next', 
    prev:   '#prev', 
    timeout: 4000,
    after:     onAfter 
});
function onAfter(curr,next,opts) {
	var caption = 'Image <b>' + (opts.currSlide + 1) + '</b> of <b>' + opts.slideCount + '</b>';
	$('#imgCount').html(caption);
}

$('#autoPlay').click(function() {
    var curState = $('#autoPlayOnOff').html();
    $('#weddingSlideShow').cycle('toggle');
    if(curState == 'ON') {
        curState = 'OFF';
    } else {
        curState = 'ON';
    }
    $('#autoPlayOnOff').html(curState);
}); 

    /*
    'pause'   // pauses the slideshow, slideshow can be resumed with 'resume' command 
    'resume'  // resumes a paused slideshow 
    'toggle'  // toggles the pause/resume state of the slideshow 
    'next'    // advances slideshow to next slide 
    'prev'    // advances slideshow to previous slide 
    'stop'    // stops the slideshow 
    'destroy' // stops the slideshow and unbinds all events 
    */
  
});

