$(function() {
	$('#pause').click(function() { $('#slideshow').cycle('pause'); return false; });
	$('#play').click(function() { $('#slideshow').cycle('resume'); return false; });
	$('#soonaeslideshow').hover(
		function() { $('#slideshowcontrols').fadeIn(); },
		function() { $('#slideshowcontrols').fadeOut(); }
	);
	$('#slideshow').cycle({
		after:onAfter,
		before:onBefore,
		fit:0,
		fx:'shuffle',
		next:'#next',
		prev:'#prev',
		shuffle:{top:-500,left:100},
		speed:500
	});
});
function onAfter(){$('#output').html(this.title);}
function onBefore(){$('#output').html("&nbsp;");}
document.write('<style type="text/css">ul#slideshow{height:360px !important}</style>');
