$(document).ready( function(){ 
		$('#teaser').click(function(){
			$('#bigpic').fadeOut('slow',function(){
				$('#smallpic').fadeIn('slow');
			});
		});
	var first = 0;
	var speed = 700;
	var pause = 7000;
	
		function removeFirst(){
			first = $('div#ticker p.hotel:first').html();
			$('div#ticker p.hotel:first')
			.animate({opacity: 0}, speed)
			.slideUp('slow', function() {
			$(this).remove();
			addLast(first);
			});
			
		}
		
		function addLast(first){
			last = '<p class="hotel" style="display:none">'+first+'</p>';
			$('div#ticker').append(last)
			$('div#ticker p:last')
			.animate({opacity: 1}, speed)
			.fadeIn('slow')
		}
	
	interval = setInterval(removeFirst, pause);
	} ); 

