$(document).ready(function () {

   

    $('#slideshow, #slideshow-work, #box-information').hover(

    function () {
        $('#slides-title').fadeIn();
    }, function () {
        $('#slides-title').fadeOut();
    });

    $('#slides').cycle({
        fx: 'scrollHorz',
        speed: 1500,
        timeout: 8000,
        next: '#next',
        prev: '#previous',
        pause: 1,
        after: onAfter,
        before: function () {
            $('#slides-title').html(this.alt);
            $('#box-quote').hide().html(this.alt).fadeIn(1500);
            $('#box-source').hide().html(this.title).fadeIn(1500);
			$('#box-text').hide().html(this.id).fadeIn(1500);
			
        }
    });
	
	


    function onAfter(curr, next, opts) {
        var caption = (opts.currSlide + 1) + ' / ' + opts.slideCount;
        $('#slideshowCurrent').html(caption);
    }


    $('.calendar-hover', this).hide();

    $('#backstage li', this).hover(

    function () {
        $('.calendar-hover', this).fadeIn();
    }, function () {
        $('.calendar-hover', this).fadeOut();
    });


});




