// jQuery_accordion

// copyright (c) 2007 RedLine Magazine
// Licensed under the MIT License:
// customize: Takashi Hirasawa (http://css-happylife.com/)

// faq
$(function (){
	$("dl.qanda dd.a").css("display","none");
	$("dl.qanda dt.q a").click(function(){
		$(this).parent().next().slideToggle("normal");
		var iconImage = $($(this).children()[1]);
		
		if (iconImage.attr("src") == "../img/faq/faq-btn-answer.gif") {
			// 画像置換
			iconImage.attr("src", "../img/faq/faq-btn-close.gif");
			// CSS置換
			iconImage.parent().css("background-color", "#f2f1f1").css("background-image", "url(../img/faq/faq-icon-q-over.gif)");
			// hover疑似要素を再定義
			iconImage.parent().hover(function(){
				iconImage.parent().css("background-color", "#f2f1f1").css("background-image", "url(../img/faq/faq-icon-q-over.gif)");
			},function(){
				iconImage.parent().css("background-color", "#f2f1f1").css("background-image", "url(../img/faq/faq-icon-q-over.gif)");
			});
		} else {
			// 画像置換
			iconImage.attr("src", "../img/faq/faq-btn-answer.gif");
			// CSS置換
			iconImage.parent().css("background-color", "#fff").css("background-image", "url(../img/faq/faq-icon-q.gif)");
			// hover疑似要素を再定義
			iconImage.parent().hover(function(){
				iconImage.parent().css("background-color", "#f2f1f1").css("background-image", "url(../img/faq/faq-icon-q-over.gif)");
			},function(){
				iconImage.parent().css("background-color", "#fff").css("background-image", "url(../img/faq/faq-icon-q.gif)");
			});
		}
	});
});


/*
background-color: #f2f1f1;
	background-image: url(../img/faq/faq-icon-q-over.gif);
*/