function initElements() { 
	// リンクプロトコル調整
	var i;
	var chkJs = new RegExp("javascript:", "i");
	for (i = 0; i < document.links.length; i++) {
		if (document.links[i].name == "https:") {
			if (document.links[i].protocol != "https:") {
				document.links[i].protocol = "https:";
				if (document.links[i].port != "") {
					document.links[i].port = "443";
				}
			}
		} else if (document.links[i].protocol.search(chkJs) < 0) {
			if (document.links[i].protocol != "http:") {
				document.links[i].protocol = "http:";
				if (document.links[i].port != "") {
					document.links[i].port = "80";
				}
			}
		}
	}
}

