// JavaScript Document

$(function(){
	/*よくある質問のクリックアニメーション*/
	$('body#q-and-a .entry-content #qa-list dl dd').css('display','none');
	$('body#q-and-a .entry-content #qa-list dl dt').css({textDecoration:'none', cursor:'pointer'}).hover(
		function(){
			$(this).css('textDecoration','underline');
		},
		function(){
			$(this).css('textDecoration','none');
		}
		).click(function(){
			$(this).next().slideToggle('fast');
			
	});
	
	/*a > img のhoverアクション*/
	$('#content a img, #header-contact a img').hover(function(){
		$(this).css('opacity','0.85');
	},
	function(){
		$(this).css('opacity','1');
	
	});
})
