//voice sample window
function thumshow(fpn) {
	document.getElementById(fpn).style.display = "block";
}


function thumhide(fpn) {
	document.getElementById(fpn).style.display = "none";
}


function azShow(fpn) {
	document.getElementById(fpn).style.visibility = "visible";
}


function azHide(fpn) {
	document.getElementById(fpn).style.visibility = "hidden";
}


//サムネイル写真エフェクト
$(document).ready(function() {
	//area 1
	$('.fade-area-1').children().hover(function() {
		$(this).siblings().stop().fadeTo(300,0.5);
	}, function() {
		$(this).siblings().stop().fadeTo(500,1);
	});
});

$(document).ready(
function(){ 
	$('#profile_img').innerfade({
		animationtype: 'fade',
		speed: 2000,
		timeout: 3500,
		type: 'sequence',
		containerheight: '1em'
	});
	$('#pr_txt').innerfade({
		animationtype: 'fade',
		speed: 2000,
		timeout: 7000,
		type: 'sequence',
		containerheight: '1em'
	});
}
);


//プロフィールインデックススナップ
$(function(){
 $(".tooltip a").hover(function() {
    $(this).next("span").animate({opacity: "show", top: "-75"}, "slow");}, function() {
           $(this).next("span").animate({opacity: "hide", top: "-85"}, "fast");
 });
});


