// Settings for my Jquery Cycle Display

var $j = jQuery.noConflict();

$j(document).ready(function() {
    $j('#content-wrapper').cycle({
    fx:     'fade',
    speed:  100,
    next:   '#homenext',
    prev:   '#homeprev',
    timeout: 0,
	nowrap:  1
	});
	
	$j('#rotate').cycle({
    fx:     'fade', 
    speed:   600, 
    timeout: 9000000000, 
    next:   '#rotate', 
    pause:   1 
	});
		
});

function onAfter() { 
    $('#output').html(this.alt); 
}


