function include(destination){
	if(destination.substr(destination.length-3,3)==".js"){
		var e=window.document.createElement('script');e.setAttribute('src',destination);e.setAttribute("type","text/javascript");window.document.body.appendChild(e);
	}else if(destination.substr(destination.length-4,4)==".css"){
		var e=window.document.createElement('link');e.setAttribute('href',destination);e.setAttribute("type","text/css");e.setAttribute("rel","stylesheet");window.document.body.appendChild(e);
		//location.href=(destination);
	}
}
include(script_url+"js_apis/jquery/jquery.js");
include(script_url+"js_apis/script.js");
include(script_url+"js_apis/jquery-ui/js/jquery-ui.min.js");
include(script_url+"js_apis/jquery-ui/css/custom-theme/jquery-ui.css");

