$(document).ready(function() {
	
	function onBefore() {
		$('.wellcome_flash').prepend("<a href='" + this.alt + "'>");
		$('.wellcome_flash').append('</a>');
	}
	
	function onAfter() {
		$('.wellcome_flash').prepend("<a href='" + this.alt + "'>");
		$('.wellcome_flash').append('</a>');
	}
	
	$('.wellcome_flash').cycle({
		fx: 'fade',
		timeout: 4000,
		speed: 500
		//before: onBefore,
		//after:   onAfter
	});

});

