// JavaScript Document
	$(function(){	
	     
		$("#PicShow").imageScroller({
			next:"btn1",
			prev:"btn2",
			frame:"IndexPic",
			child:"li",
			auto:true
		});
			 
	});
//
	//¹ö¶¯ÐÂÎÅÓÃ
	 function scroll_news(){
    $(function(){
        var $firstNode1 = $('#IndexNews table tr');                         
        $firstNode1.eq(0).fadeOut('slow',function(){                         
        $(this).clone().appendTo($(this).parent()).fadeIn('slow');
        $(this).remove();
        });
    });
    }
    setInterval('scroll_news()',2000);