﻿function imports(fileName,type)
{
	if(fileName.indexOf(".js")==fileName.length-3||type=="js")
	{
		if(fileName=="*.js")
		{
			var path=document.location.pathname;
			if(path.substring(0,1)!="/")
				path="/"+path;
			path=path.substring(0,path.lastIndexOf("/")+1)+"js"+path.substring(path.lastIndexOf("/"))+".js";
			if(path.indexOf("timer.htm")<0)
				fileName=path;
			if(fileName.indexOf("/.js")>=0)
			{
				return;
			}
		}
		if(fileName.indexOf("/")<0)
			document.write("<script type=\"text/javascript\" src=\"/public/js/"+fileName+"\"></script>");
		else
			document.write("<script type=\"text/javascript\" src=\""+fileName+"\"></script>");
	}
	else if(fileName.indexOf(".css")==fileName.length-4||type=="css")
	{
		document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\""+fileName+"\"/>");
	}
}
/************************************************************************
Copyright: Charlie
Email: xiarugu@163.com
PS: please put the [public] folder under the website %root%
************************************************************************/

imports("jquery_1.2.6.js");
imports("jquery.timer.js");
imports("jquery.dhtml.js");
imports("jquery.showtip.js");
//imports("jquery.AjaxList.js");
//imports("jquery.Tree.js");