$(document).ready(function() {
		$(".post").hover(function(){
			$(this).addClass("phover");
		},function(){
			$(this).removeClass("phover");
		});

		$(".zstj li:even,.csinfo tr:even,.czinfo tr:even").addClass("lieven");
		$(".zstj li").hover(function(){
			$(this).addClass("lieven2");
		},function(){
			$(this).removeClass("lieven2");
		});

		$(".stext").focus(function(){
			if (this.value=='请输入要搜索的内容') this.value='';
		}).blur(function(){
			if(this.value=='') this.value='请输入要搜索的内容';
		});
});

function scroll_news(){
$(function(){
      $('#dvmq li').eq(0).fadeOut('slow',function(){        
	     //   alert($(this).clone().html());
		 //克隆:不用克隆的话，remove()就没了。
            $(this).clone().appendTo($(this).parent()).fadeIn('slow');
            $(this).remove();
        });
     });
}
setInterval('scroll_news()',3000);