
    function onAfter(curr, next, opts) {
        $($("#badges .badge").get(opts.currSlide)).fadeIn();
    }

    function onBefore(curr, next, opts) {
        $($("#badges .badge").get(opts.currSlide)).fadeOut();
    }

	$(function() {
        $('#slideshow').cycle({
            after: onAfter,
            before: onBefore,
            fx: 'fade',
            timeout: 6000,
            speed: 3000,
            pager: '#nav',
            slideExpr: '.slide'
        });  
    });


	$(document).ready(function () {

		$("a[rel=example_group]").fancybox({
			'transitionIn': 'none',
			'transitionOut': 'none',
			'titlePosition': 'over',
			'autoScale': true,
			'centerOnScroll': true,
			'enableEscapeButton': true,
			'onComplete': function () {
				$("#fancybox-wrap").hover(function () {
					$("#fancybox-title").show();
				}, function () {
					$("#fancybox-title").hide();
				});
			},
			'titleFormat': function (title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">' + title + '</span>';
			}

		});


	});
