// JavaScript Document
$(function() {
    $('#mastimage').cycle({
        speed: 700,
		timeout: 8000,
		next: '#next2',
   		prev: '#prev2',
        after: onAfter
    });
    
    function onAfter() {
        $('#title').html('<h4><a href="http://' + this.alt + '">' + this.title + '</a></h4>');
    }
});
