$(document).ready(function() {
	$('#banner_slideshow').cycle({
		fx: 'fade',
		speed: 'slow',
		timeout: 7000,
		prev: '#arrow_prev',
		next: '#arrow_next',
		after: onAfter
	});
	
	function onAfter() {
		$('#banner_description a').hide();
		$('#'+this.id+"_desc").show();
	}
});

