jQuery.noConflict();
jQuery(document).ready(function($){	
	$('.home-slideshow').cycle({
		fx: 'fade',
		timeout: 5000, 
		pause: false,
		after: onAfter,
		next:   '#next-home', 
		prev:   '#prev-home'
	});
	
	function onAfter(curr,next,opts) {
		var caption = '<h6>' + $(this).children().attr('alt') + '</h6>';
		$('#home-caption').html(caption);
	}
});
