
$(document).ready(function(){

// News Ticker
$("ul#news_ticker").bxSlider({
	controls: false,
	speed: 500,
	pager: false,
	auto: true,
	pause: 3500
});

// ○の家ボタンのマウスオーバー処理
$(".on").fadeTo("0",0);
$(".on").hover(
  function () {
    $(this).fadeTo("slow",1.00);
  },
  function () {
    $(this).fadeTo("slow",0);
  }
);


$("dl.news dd:first").css("color" , "#000").css("paddingBottom" , "1em").css("borderBottom" , "1px dotted #aaa");
});

