// JavaScript Document 文件
function changeTechnology(Result){
	if (Result){
		var $list=$('#main_container div.technologyKV div.technologys ul');
		setTimeout(function(){$list[0].scrollTo("."+Result)}, 1000)
		$list.find("li."+Result).addClass("current");
	}
	else{
		var $firstListItem=$('#main_container div.technologyKV div.technologys ul li:first')
		$firstListItem.addClass("current")
	}
}


$(function(){
		   $('#main_container div.technologyKV div.technologys > ul').jScrollPane({animateTo:true, animateInterval:50, animateStep:5, showArrows: true, scrollbarWidth: 7, arrowSize: 8,dragMaxHeight:99999 })

//		   $.getQueryString({
//							ID:"tech",
//							onSuccess:function(op,Result){
//									var $list=$('#main_container div.technologyKV div.technologys ul');
//									setTimeout(function(){$list[0].scrollTo("."+Result)}, 1000)
//									$list.find("li."+Result).addClass("current");
//									
//								},
//							onError:function(){
//								var $firstListItem=$('#main_container div.technologyKV div.technologys ul li:first')
//								$firstListItem.addClass("current")
//								}	
//							})
		   })