$(function() {
    $('#mastimage').cycle({
		speed: 1200,
		timeout: 7000,
		ease: 'true',
		next: '#next2',
   		prev: '#prev2',
		before: onBefore,
        	after: onAfter
    });
    
    function onAfter() {
		$('#title p').fadeOut(20);
		$('#home-quote').fadeOut(20);
        $('#title p').html(this.title);
		$('#home-quote').html('&quot;' + this.alt + '&quot;');
		$('#home-quote').fadeIn(200);
		$('#title p').fadeIn(200);
    }
	
	 function onBefore() {
		$('#title p').fadeOut(1300);
		$('#home-quote').fadeOut(1300);
    }
});
