// トップページ javascript

$(function(){
	
	// focus 消去
	$('a').focus(function(){this.blur();})
	
	$(document).everyTime(2000, "panelInTimer", panelIn);
})

function panelIn() {
	$(document).stopTime("panelInTimer");
	$('#releasePanel').css('display', 'block');
	$('#releasePanel').animate({height:'45px'});
}


