function newsTicker(id){
	var first = 0;
	var speed = 700;
	var pause = 4000;
	
		function removeFirst(){
			first = $('ul#'+id+' li:first').html();
			$('ul#'+id+' li:first')
			.animate({opacity: 0}, speed)
			.animate({height:1}, function() {$(this).remove();})
			//.fadeOut('slow', function() {$(this).remove();});
			addLast(first);
		}
		
		function addLast(first){
			last = '<li style="display:none">'+first+'</li>';
			$('ul#'+id+'').append(last)
			$('ul#'+id+' li:last')
			.animate({opacity: 1}, speed)
			.fadeIn('slow')
		}
	
	interval = setInterval(removeFirst, pause);
}
//newsTicker('listticker');
/*
<ul id="listticker">

	<li>
		<img src="img/1.png" />
		<a href="" class="news-title">Health care reform</a>
		<span class="news-text">President Obama has announced three bedrock requirements for real health care reform</span>
	</li>
	<li>
		<img src="img/2.png" />
		<a href="" class="news-title">National Geographic Animals</a>

		<span class="news-text">Killer whales, Bengal tigers, crocs, more</span>
	</li>
	<li>
		<img src="img/3.png" />
		<a href="" class="news-title">Spotlight stars</a>
		<span class="news-text">Marilyn Manson is not exactly a conformist. From his music — a meat-grinder...</span>
	</li>

	<li>
		<img src="img/4.png" />
		<a href="" class="news-title">Lost: the new serie is coming</a>
		<span class="news-text">Watch full episodes online. The final season begins early 2010</span>
	</li>
</ul>

*/
