$(function(){

	//ツールチップ
	$(".tooltips a").hover(function(){
		$(this).next("p.txt_tips").stop(true, true).animate({ opacity:"show", top:"-55" }, "slow");
	}, function(){
		$(this).next("p.txt_tips").animate({ opacity:"hide", top:"-65" }, "fast");
	});
	
	$(".tooltips02 a").hover(function(){
		$(this).next("p.txt_tips02").stop(true, true).animate({ opacity:"show", top:"-55" }, "slow");
	}, function(){
		$(this).next("p.txt_tips02").animate({ opacity:"hide", top:"-65" }, "fast");
	});

});



