	$(function() {
		$('#slideshow div:first').fadeIn(1000, function() {
	        $('#slideshow').cycle({
			    fx:     'scrollHorz',
			    timeout: 6000,
				easing: 'easeinout',
			    prev:   '#slide-prev',
			    next:   '#slide-next',
				pager: '#slide-pager',
			    after:   onClick
			});
	    });
	});

	function onClick() {
	    //$('#output').html("Current anchor: " + this.href);
	}

$('#mask-images').cycle({
	fx:     'scrollHorz',
	timeout: 4000,
	easing: 'easeinout'
});
