/*------------------------------ 

	home.js

	powered by jQuery
------------------------------ */

$(document).ready(function(){


// ===============================================
// 最新ニュースをフェードインしてnew!!アイコンを付ける
// ===============================================

	$('dt:first , dd:first' , 'div#whatsnew')
		.css('opacity' , '0')
		.animate({
			opacity : '1'
		} , 1000);

	$('dt:first' , 'div#whatsnew')
		.append('<img src="/home/images/icon_new.gif" width="32" height="16" alt="new!!" class="icon">');

// ===============================================
// 最後のトピックスのアンダーラインを消す。
// ===============================================

	$('#topics li:last').css('borderBottom' , 'none');


});
