// JavaScript Document

       
/* Mouse Over
---------------------------------------------------------------------- */

$(function(){
	$(document).ready(function(){
	$(function() { 
	$(".listBox a img").css("opacity","1");
	//初期設定として画像のopacityを0にします。
	$(".listBox a img").hover( //hoverです。
	function () {
	$(this).stop().animate({opacity: 0.55, easing: "linear"}, 250 );},
	function () {
	$(this).stop().animate({opacity: 1}, 'fast');}
	);
	});
	});
});
//focus
$(document).ready(function($) {
	$('a').focus(function(){this.blur();});
});


/* Fade In
---------------------------------------------------------------------- */

$(function(){  
    $('h4, .postBox, .listBox, .articlebox').hide();  
});  
  
var i = 0;  
var int=0;  
  
$(window).bind("load", function() {  
    var int=setInterval("doFade(i)",100);  
});  
  
function doFade() {  
    var list = $('h4, .postBox, .listBox, .articlebox').length;  
    if (i >= list) {  
        clearInterval(int);  
    }  
    $('h4, .postBox, .listBox, .articlebox').eq(i).fadeIn(1500);  
        i++;  
}  
 
  
// -->
