<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
		"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" />
	<meta http-equiv="Content-Style-Type" content="text/css" />
	<meta name="generator" content="ViVi, see http://vivi.dyndns.org/" />
	<meta name="author" content="ntsuda" />
	<title>Hello, World</title>
    <script src="./js/jQuery.js" type="text/JavaScript"></script>
	<script type="text/javascript"><!--
	$(function() {		//	初期化時にコールされる関数
		$("#message").html("hello, world.<br>");	//	id = "message" の div に文字列設定
	});
	//--></script>
</head>
<body>
<div id="message"></div>
</body>
</html>