$(function() {
    $('#mastimage').cycle({
        delay: 100,
        speed: 1200,
		timeout: 4000,
		fx: 'scrollHorz',
		easing: 'easeInOutCubic', 
		next: '#next2',
   		prev: '#prev2',
        after: onAfter	
    });	
    function onAfter() {
		var awrap = $('<a href="http://' + this.alt + '"></a>');
        $('#title').html('<p><a href="http://' + this.alt + '">' + this.title + '</a></p>');
		$('#mastimage').wrap(awrap);	
    }
});
