

	$(function(){
	
		$('.t_menu').css("cursor","pointer").hover(function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
		}, function() {
			var currentImg = $(this).attr('src');
			$(this).attr('src', $(this).attr('hover'));
			$(this).attr('hover', currentImg);
		});		

		$(".faq_box01").css("display","none");
		$(".faq_box05").css("display","none");
		
		$("a.faq_hidden").css("cursor","pointer").click(function(){
			var tmp_id = this.id;
			var tmp_this = $("#"+tmp_id+"_1");
			var tmp_this2 = "";
			if(tmp_id.match("15")){
				tmp_this2 = $("#"+tmp_id+"_2");
				var tmp_state = tmp_this2.css("display");
				if(tmp_state == "none"){
					tmp_this2.css("display","block");
				}else{
					tmp_this2.css("display","none");
				}
			}
			var tmp_state = tmp_this.css("display");
			if(tmp_state == "none"){
				tmp_this.css("display","block");
			}else{
				tmp_this.css("display","none");
			}
		});

	});

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}




