
var rotator = jQuery.noConflict()
rotator(document).ready(function() {

	var first = 0;
	var speed = 700;
	var pause = 3500;

		function removeFirst(){
			first = rotator('ul#rotBanner li:first').html();
			rotator('ul#rotBanner li:first')
			.animate({opacity: 0}, speed)
			.fadeOut('slow', function() {rotator(this).remove();});
			addLast(first);
		}

		function addLast(first){
			last = '<li style="display:none">'+first+'</li>';
			rotator('ul#rotBanner').append(last)
			.animate({opacity: 1}, speed)
			.fadeIn('slow')
		}

	interval = setInterval(removeFirst, pause);
});

