Index: /branches/version-2_5-dev/html/user_data/packages/sphone/css/top.css
===================================================================
--- /branches/version-2_5-dev/html/user_data/packages/sphone/css/top.css	(revision 20614)
+++ /branches/version-2_5-dev/html/user_data/packages/sphone/css/top.css	(revision 20656)
@@ -2,14 +2,14 @@
 
 /* ヘッダー
------------------------------------------------ */
+   ----------------------------------------------- */
 #topbox {
-position: relative;
-width: 106.8%;
-margin-left: -3.4%;
-background-color: #333333;
+    position: relative;
+    width: 106.8%;
+    margin-left: -3.4%;
+    background-color: #333333;
 }
 
 /* ヘッダーロゴ
------------------------------------------------- */
+   ------------------------------------------------ */
 #header {
     background-color: #ffffff;
@@ -18,5 +18,5 @@
 }
 #header h1 {
-margin: 0;
+    margin: 0;
 }
 #header h1 a {
@@ -33,18 +33,18 @@
 
 /* 検索バー
------------------------------------------------ */
+   ----------------------------------------------- */
 #searchbar {
-border-top: 1px solid #5c5c5c;
-border-bottom: 1px solid #000000;
-background-color: #333333;
-background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#333333), to(#5C5C5C), color-stop(0.6,#2E2E2E));
-width: 100%;
+    border-top: 1px solid #5c5c5c;
+    border-bottom: 1px solid #000000;
+    background-color: #333333;
+    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#333333), to(#5C5C5C), color-stop(0.6,#2E2E2E));
+    width: 100%;
 }
 
 /* メンバーメニュー
------------------------------------------------ */
+   ----------------------------------------------- */
 #block-login {
     display: block;
-font-size: 100%;
+    font-size: 100%;
     margin: 10px auto;
     width: 301px;
@@ -52,33 +52,15 @@
 
 /* ニュース
------------------------------------------------ */
+   ----------------------------------------------- */
 #block-news{
-position: relative;
-width: 106.8%;
-margin-left: -3.4%;
-//padding: 10px 0px;
-height: 1.8em;
-background-image: -webkit-gradient(linear, 0% 0%, 0% 95%, from(#7A7A7A), to(#CCCCCC), color-stop(.07,#FFFFFF),color-stop(.9,#FFFFFF));
-overflow: hidden;
+    position: relative;
+    width: 106.8%;
+    margin-left: -3.4%;
+    height: 1.8em;
+    background-image: -webkit-gradient(linear, 0% 0%, 0% 95%, from(#7A7A7A), to(#CCCCCC), color-stop(.07,#FFFFFF),color-stop(.9,#FFFFFF));
 }
 .anews{
-color: #666666;
-font: /*bold*/ 90% Helvetica;
-/*text-shadow: 1px 1px 2px rgba(0,0,0,0.3);*/
-margin: 0.3em 10px;
-/*opacity: 0;
--webkit-transition: all 1.0s ease-in-out;*/
-position: absolute;
+    color: #666666;
+    font: 90% Helvetica;
+    margin: 0.3em 10px;
 }
-.anews.view{
-opacity: 1.0;
-left: 0;
-width: 100%;
-overflow: hidden;
-white-space: nowrap; 
-text-overflow: ellipsis;
-}
-.anews.right{
-opacity: 0;
-left: 2em;
-}
Index: /branches/version-2_5-dev/html/user_data/packages/sphone/js/news.js
===================================================================
--- /branches/version-2_5-dev/html/user_data/packages/sphone/js/news.js	(revision 20116)
+++ /branches/version-2_5-dev/html/user_data/packages/sphone/js/news.js	(revision 20656)
@@ -1,27 +1,17 @@
-var newsText = new Array();
-var newsCnt = 0;
-/*------------------------------------------
-@î{Ö(zñÌÌJEgð¾éj
-------------------------------------------*/
-function getNext(ary, cnt) {
-    if(++cnt >= ary.length)
-        return 0;
-    else
-        return cnt;
-}
-/*------------------------------------------
-@î{Ö(zñÌÌJEgð¾éj
-------------------------------------------*/
-function nextNews(){
-    newsText[newsCnt].className = "anews";
-    newsCnt = getNext(newsText, newsCnt);
-    newsText[getNext(newsText, newsCnt)].className = "anews right";
-    newsText[newsCnt].className = "anews view";
-}
+$(function() {
+      $('.anews').each(function(i) {
+                           $(this).addClass('news-' + i).hide();
+                       });
+      $('.news-0').fadeIn('slow');
+      var count = 1;
+      var interval = 5000;
+      var timer = setInterval(function() {
+                                  $('.anews').hide();
+                                  $('.news-' + count).fadeIn('slow');
+                                  count++;
+                                  if (count > $('.anews').size() -1) {
+                                      count = 0;
+                                  }
+                              }, interval);
 
-function initNews(){
-    newsText = document.getElementsByClassName('anews');
-    newsid = setInterval("nextNews()", 10000);
-    newsText[getNext(newsText, newsCnt)].className = "anews right";
-    newsText[newsCnt].className = "anews view";
-}
+  });
Index: /branches/version-2_5-dev/html/user_data/packages/sphone/js/category.js
===================================================================
--- /branches/version-2_5-dev/html/user_data/packages/sphone/js/category.js	(revision 20116)
+++ /branches/version-2_5-dev/html/user_data/packages/sphone/js/category.js	(revision 20656)
@@ -9,5 +9,5 @@
         tgt.style.height = "auto";
         tgt.style.paddingTop = "0.25em";
-        tgt.style.lineHeight = "1em"
+        tgt.style.lineHeight = "1em";
         tgt.style.opacity = 1.0;
     }
Index: /branches/version-2_5-dev/data/Smarty/templates/sphone/frontparts/bloc/news.tpl
===================================================================
--- /branches/version-2_5-dev/data/Smarty/templates/sphone/frontparts/bloc/news.tpl	(revision 20462)
+++ /branches/version-2_5-dev/data/Smarty/templates/sphone/frontparts/bloc/news.tpl	(revision 20656)
@@ -28,10 +28,8 @@
 
 <!--{section name=data loop=$arrNews max=3}-->
-<div class="anews">
-<span><!--{$arrNews[data].news_date_disp|date_format:"%m.%d"}--></span>&nbsp;
-<!--{if $arrNews[data].news_url}--><a href="<!--{$arrNews[data].news_url|h}-->"><!--{/if}-->
-<!--{$arrNews[data].news_title|h}-->
-<!--{if $arrNews[data].news_url}--></a><!--{/if}-->
-</div>
+    <div class="anews">
+        <span><!--{$arrNews[data].news_date_disp|date_format:"%m.%d"}--></span>&nbsp;
+        <!--{if $arrNews[data].news_url}--><a href="<!--{$arrNews[data].news_url|h}-->"><!--{/if}--><!--{$arrNews[data].news_title|h}--><!--{if $arrNews[data].news_url}--></a><!--{/if}-->
+    </div>
 <!--{/section}-->
 
@@ -39,9 +37,4 @@
 </div>
 
-<script type="text/javascript" language="JavaScript">
-//<![CDATA[
-initNews(); //カテゴリーリストの初期化
-//]]>
-</script>
 <!--{/if}-->
 
