function addCss(fn){
	var head = document.getElementsByTagName("head"), s=head[0] ? document.createElement("link") : null;
	if(s){
		s.setAttribute("href",fn);
		s.setAttribute("rel", "stylesheet");
		s.setAttribute("type", "text/css");
		head[0].appendChild(s);
	}
	else
		setTimeout(function(){addCss(fn)},10);
}
