Index: /trunk/FACT++/www/showlog/index.css
===================================================================
--- /trunk/FACT++/www/showlog/index.css	(revision 15375)
+++ /trunk/FACT++/www/showlog/index.css	(revision 15376)
@@ -1,15 +1,11 @@
 .up {
-    cursor:pointer;
     padding:0 5px 4px 7px;
     position:fixed;
     top:0;
     right:0;
-    text-decoration:underline;
-    color:navy;
     background-color:#ebe7e6;
 }
 
 .dn {
-    cursor:pointer;
     padding:0 5px 4px 7px;
     padding-top:0px;
@@ -17,6 +13,4 @@
     bottom:0;
     right:0;
-    text-decoration:underline;
-    color:navy;
     background-color:#ebe7e6;
 }
@@ -24,5 +18,5 @@
 #nav {
     position:fixed;
-    right:80px;
+    right:90px;
     top:0;
     background-color:#ebe7e6;
Index: /trunk/FACT++/www/showlog/index.php
===================================================================
--- /trunk/FACT++/www/showlog/index.php	(revision 15375)
+++ /trunk/FACT++/www/showlog/index.php	(revision 15376)
@@ -351,6 +351,6 @@
 $dir  = basename(dirname($filename));
 $name = basename($filename);
-
 ?>
+
 <!DOCTYPE HTML>
 <html>
@@ -362,22 +362,18 @@
 <meta charset="UTF-8">
 <title><?php print($dir." - ".$name);?></title>
-<link rel="stylesheet" type="text/css" href="showlog.css" />
-<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
+<link rel="stylesheet" type="text/css" href="index.css" />
+<script src="jquery-2.0.0.min.js" type="text/javascript"></script>
 <script>
-function scroll(top)
-{
-   document.getElementById(top?'top':'bottom').scrollIntoView(top);
-}
-$(document).ready(function() {
-	$("#nav li:has(ul)").hover(function(){
-		$(this).find("ul").slideDown(200);
-	}, function(){
-		$(this).find("ul").hide();
-	});
+$(function(){
+   $("#nav li:has(ul)").hover(function(){
+      $(this).find("ul").slideDown(200);
+   }, function(){
+      $(this).find("ul").hide();
+   });
 });
 </script>
 </head>
-<body onload="setTimeout(function(){scroll(false);},1);">
-<span onclick="scroll(true);" class="up">go to top &uarr;</span>
+<body onload="if (location.hash.length==0) location.hash = '#bottom';">
+<a class="up" href="#top">go to top &uarr;</a>
 <span id="nav">
    <ul>
@@ -411,5 +407,5 @@
 </span>
 </span>
-<span onclick="scroll(false);" class="dn">go to bottom &darr;</span>
+<a class="dn" href="#bottom">go to bottom &darr;</a>
 
 
@@ -423,5 +419,5 @@
 
 </pre>
-<span id="bottom"></span>
+<div id="bottom"></div>
 </body>
 </html>
