addStyle() : 外部CSSファイルの追加
addStyle = function(str){
 var obj = Fap(Ftag(document, "head")[0], Fce("link"));
 obj.rel = "stylesheet";
 obj.href = "http://www.nancyan.net/nancyan/css/" + str + ".css";
 obj.type = "text/css";
};