var tooltipcss = document.createElement("link");
tooltipcss.type = "text/css";
tooltipcss.rel = "stylesheet";
tooltipcss.href = "http://wowbox.yatta.com.tw/tooltip/tooltip.css";
head = document.getElementsByTagName("head")[0];
head.appendChild(tooltipcss);
var tooltipjs = document.createElement("script");
tooltipjs.type = "text/javascript";
tooltipjs.src = "http://wowbox.yatta.com.tw/tooltip/tooltip.js";
head.appendChild(tooltipjs);
if (/msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent)) {
	var iecss = document.createElement("link");
	iecss.type = "text/css";
	iecss.rel = "stylesheet";
	iecss.href = "http://wowbox.yatta.com.tw/tooltip/tooltip-ie.css";
	head.appendChild(iecss);
}
// from global.js
var onloads = new Array();
function addLoadEvent(func) {
	onloads[onloads.length] = func;
}
window.onload = function() {
	for (var i = 0; i < onloads.length; i++) {
		onloads[i]();
	}
}
