﻿$(document).ready(function(){
   		
		$(".answer").each(function(){
			$(this).hide();
		});
		$(".faq_btn").each(function(){
			$(this).click(function()
			{
				
				if($(this).children("img").attr("alt") == "回答"){
					if (navigator.appName.indexOf('Microsoft') > -1 && typeof document.body.style.maxHeight == "undefined") {
						$(this).parents(".faq_box").children(".answer").show();
					} else {
						$(this).parents(".faq_box").children(".answer").slideDown("fast");
					}
					$(this).html('<img src="img/faq_btn_close.gif" alt="閉じる" width="67" height="24" />');
				} else {
					if (navigator.appName.indexOf('Microsoft') > -1 && typeof document.body.style.maxHeight == "undefined") {
						$(this).parents(".faq_box").children(".answer").hide();
					} else {
						$(this).parents(".faq_box").children(".answer").slideUp("fast");
					}
					
					$(this).html('<img src="img/faq_btn_open.gif" alt="回答" width="67" height="24" />');
				}
			});
		});
	
	});
