$(function() {
	$('#soonaeslideshow').hover(
		function() { $('#slideshowcontrols').fadeIn(); },
		function() { $('#slideshowcontrols').fadeOut(); }
	);
	$('#slideshow').cycle({
		after:onAfter,
		//before:onBefore,
		fit:0,
		fx:'shuffle',
		next:'#next',
		prev:'#prev',
		shuffle:{top:-100,left:-600},
		speed:690
	});
});
function onAfter(){$('#output').html(this.title);}
document.write('<style type="text/css">#right ul#slideshow{height:384px !important}</style>');

