jQuery.noConflict();jQuery(document).ready(function() {
	jQuery('#welcome').show().cycle({
		fx: 'fade',
		easing: 'easeInOutQuad',
		speed: '1500',
		timeout: '500',
		sync: true,
		random: true,
		before: function(a,n,o,f) {jQuery('div', this).css('display', 'none');},
		after: function(a,n,o,f) {jQuery('div', this).animate({opacity: 'show'},200);}
	});
});
