// SubNavigation
$(function() {
	$(".navi li").hover(function(){
		$(this).find('ul:first').slideDown("fast").css({visibility: "visible",display: "block"});
	},function(){
		$(this).find('ul:first').slideUp("fast").css({visibility: "hidden"});
	});
});
// Menu First li nb
$(function() {
	$(".navi li:first").addClass("nl");
	$(".footpage li:first").addClass("nb");
});
// SearchForm
$(document).ready(function(){				   
	$('.searchInput').focus(
		function() {
			if($(this).val() == '输入关键字') {
				$(this).val('').css({color:"#222"});
			}
		}
	).blur(
		function(){
			if($(this).val() == '') {
				$(this).val('输入关键字').css({color:"#666"});
			}
		}
	);
});
// Slideshow
$(function(){
	var index = 0;
	$("#operate span:first").addClass("hov");
	$("#operate span").mouseover(function(){
	  index  =  $("#operate span").index(this);
	  showImg(index);
	});	
	
	$('#slideshow').hover(function(){
			if(MyTime){
			   clearInterval(MyTime);
			}
	},function(){
			MyTime = setInterval(function(){
			  showImg(index)
			  index++;
			  if(index==5){index=0;}
			} , 6000);
	});
	
	var MyTime = setInterval(function(){
	  showImg(index)
	  index++;
	  if(index==5){index=0;}
	} , 6000);
})
function showImg(i){
	$("#showimg img")
	  .eq(i).stop(true,true).fadeIn(1000)
	  .parent().siblings().find("img").hide();
	$("#msg li")
	  .eq(i).stop(true,true).fadeIn(1000)
	  .siblings().hide();
	$("#operate span")
	  .eq(i).addClass("hov")
	  .siblings().removeClass("hov");
}
// AutoScroll
function AutoScroll(obj){
	$(obj).find("ul:first").animate({
			marginTop:"-18px"
	},500,function(){
			$(this).css({marginTop:"0px"}).find("li:first").appendTo(this);
	});
}
$(document).ready(function(){
setInterval('AutoScroll("#scrollnews")',2000)
});
//EasySider1.5
$(document).ready(function(){	
	$("#slider").easySlider({
		prevText: 'Previous',
		nextText: 'Next',		
		firstShow: true,
		lastShow: true,
		auto: true,
		continuous: true 		
	});
});
