// JavaScript Document
function jLoad(theID, urlStr){
	$(theID).ajaxStart(function(){
								$(this).hide();
								$("#ajaxTips").addClass("tipsFocus");
								$("#ajaxTips").html("ÄÚÈÝÔØÈëÖÐ¡­¡­");
								});
	$(theID).load(urlStr);
	$(theID).ajaxComplete(function(){
								   $(this).animate({
												   height: 'show',
												   opacity: 'show'
												   }, 'slow');
								   $("#ajaxTips").html("");
								   $("#ajaxTips").removeClass("tipsFocus");
								   });
}

function getQuery(str){
	var q = location.search.substr(1);
	var qs = q.split("&");
	var queryStr;
	if (qs){
		for(var i=0;i<qs.length;i++){
			if(str==qs[i].substring(0,qs[i].indexOf("="))){
				queryStr = qs[i].substring(qs[i].indexOf("=")+1);
			}
		}
	}
	return queryStr;
}
