$(document).ready(function(){
    $('#cnt').cycle({ 
    fx:     'scrollDown', 
    speed:  'slow', 
    timeout: 0, 
    pager:  '#mnv', 
    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#mnv li:eq(' + idx + ') a'; 
    } 
	});
	
	$('#slideshow').hover(
        function() { $('#controls').fadeIn(); },
        function() { $('#controls').fadeOut(); }
    );
    
    $('#slides').cycle({
        fx:     'fade',
        speed:   400,
        timeout: 5000,
        pager:  '#nav'
    });

});
