function scroll_news(){
    var firstNode = $('.scroll-container li'); 
    firstNode.eq(0).fadeOut('slow',function(){ 
     $(this).clone().appendTo($(this).parent()).show('slow'); 
     $(this).remove();
  });
}
setInterval('scroll_news()',5000);

$(document).ready(function(){
	
	//导航
	$(".top .nav ul li .pic").hover(function(){
		$(this).find(".navDown").slideDown(100);
		$(this).find(".navDown")
	},function(){
		$(this).find(".navDown").slideUp(100);
	});	
	
	//左侧导航
	$(".subl li").click(
	 function(){
		 $(".subl li.hov").removeClass("hov");
		 $(this).addClass("hov");
		 }
	);
});


