datepickerを使う機会があったので、
サンプルコードをメモしておきます。
<!doctype html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>jQuery</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/i18n/jquery.ui.datepicker-ja.min.js"></script>
<link rel="stylesheet" href="/demos/style.css" />
<script>
$(function() {
$.datepicker.setDefaults( $.datepicker.regional[ "ja" ] );
$(".datepicker").each(function() {
$(this).datepicker();
});
});
</script>
</head>
<body>
<p>1つ目: <input type="text" class="datepicker"/></p>
<p>2つ目: <input type="text" class="datepicker"/></p>
</body>
</html>