$(function(){
	//what's news scroll
	function whatNews(){
		// vars
		var $whatNews = $("#whatNews"),
			$liLast = $whatNews.find("li:last"),
			liLastHeight = $liLast.outerHeight();
		// Operation
		//for ie6
		if($.browser.msie && $.browser.version == "6.0"){
			$liLast.prependTo($whatNews);	
			$whatNews.css({"top":-liLastHeight}).animate({"top":0},1000,function(){
				setTimeout(whatNews,2000);							
			});	
		}else{
		//for another
			$liLast.css({"opacity":0}).prependTo($whatNews);	
			$whatNews.css({"top":-liLastHeight}).animate({"top":0},1000,function(){
				$liLast.animate({"opacity":1},1000,function(){setTimeout(whatNews,2000);});														
			});	
		}
	};
	setTimeout(whatNews,2000);
});
