Index: oceandb/jQuery_Prototype/index.css
===================================================================
--- oceandb/jQuery_Prototype/index.css	(revision 59)
+++ oceandb/jQuery_Prototype/index.css	(revision 60)
@@ -19,3 +19,3 @@
 #copyright    { float: left;  margin-left:  5px; height: 100%; vertical-align: middle; }
 #logos	      { float: right; margin-right: 5px; }
-#logos img    { border: none; height: 23px; }
+#logos img    { border: none; height: 28px; }
Index: oceandb/jQuery_Prototype/index.html
===================================================================
--- oceandb/jQuery_Prototype/index.html	(revision 59)
+++ oceandb/jQuery_Prototype/index.html	(revision 60)
@@ -9,5 +9,5 @@
     <link rel="stylesheet" type="text/css" href="index.css" />
     <link rel="stylesheet" type="text/css" href="css/theme/ui.all.css" />
-    <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAREq2HXjZzIdAyVORbKBYMhTfzQKfMm5eNRoty1ZKt0XEeQdtXxTxlSH6lZOV7UEfIym3ft5_EnXXDw" type="text/javascript"></script>
+    <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAREq2HXjZzIdAyVORbKBYMhS0opoRyiGs9EYG_2S3darp9jU7AxQMTZii5Zwk4YWMLsJgow_aq10QxA" type="text/javascript"></script>
     <script src="script/jquery.js"  language="javascript"></script>
     <script src="script/jquery-ui.js"  language="javascript"></script>
Index: oceandb/jQuery_Prototype/script/oceandb.js
===================================================================
--- oceandb/jQuery_Prototype/script/oceandb.js	(revision 59)
+++ oceandb/jQuery_Prototype/script/oceandb.js	(revision 60)
@@ -1,3 +1,16 @@
+// 註冊 onReady Event
+// 參考: http://docs.jquery.com/Events
 $(document).ready(function() {
+
+  // 顯示 Loading 字樣
+
+  // 設定地圖高度
+  var map_height=document.documentElement.clientHeight - 68;
+  $('#main').css( { height: map_height } );
+
+  // 設定左側選單的 Accordion 風格
+  $('#map-menu').accordion({ header: "h3" });
+
+  // 設定點選 "MENU" 的行為
   $('#btnMenu').click(function()
   {
@@ -11,6 +24,12 @@
     }
   });
+});
 
-  $('#map-menu').accordion({ header: "h3" });
+// 註冊 window 物件的 onResize Event
+// 參考: http://docs.jquery.com/Events
+$(window).resize(function() {
+  // 當改變瀏覽器大小時，重新設定地圖高度
+  var map_height=document.documentElement.clientHeight - 68;
+  $('#main').css( { height: map_height } );
 });
 
