	
	
	$(document).ready(function(){
		//滚动图片
		showPic();
		//滚动通知
	   	tzgg_slide();
		//滚动标题
		//title_slide();
	});

	function showPic() {
	   var img_array = ['templates/images/photo/p001.png','templates/images/photo/p002.jpg','templates/images/photo/p003.jpg','templates/images/photo/p004.jpg'];
	   
	   var ddd = 0;
	   for(var i=0; i < img_array.length; i++) new function() {
			var cur = img_array[i];

			setTimeout(function(){
				$("#rand_img").attr("src",cur);
				
				setTimeout(function() {
					$("#rand_img").fadeIn(1000);
				}, 1000);

				setTimeout(function() {
					$("#rand_img").fadeOut(1500);
				}, 4500);

			}, i*6000);

			ddd = (i+1)*6000;
	   };

	   setTimeout(function(){
			showPic();
	   }, ddd);

	}	
	
	//滚动新闻
	function tzgg_slide()
	{
	setInterval(function(){	
		$('#index_ann ul li:eq(0)').fadeOut('slow', function()
		{
			$(this).appendTo($(this).parent()).fadeIn('slow');
		});		
	},5000)
	}
	
	//滚动标题栏
	function title_slide()
	{
	setInterval(function(){	
		$('#head_title ul li:eq(0)').fadeOut('slow', function()
		{
			$(this).appendTo($(this).parent()).fadeIn('slow');
		});		
	},5000)
	}	

	//滚动图片新闻
	function tpxw_slide()
	{
	
	setInterval(function(){	
		$('#tpxw_index ul li:eq(0)').fadeOut('slow', function()
		{
			$(this).appendTo($(this).parent()).fadeIn('slow');
		});		
	},3500)
	
	}