/*
 * file name: accordion.js
 * summary: faq slide script
 * create: 2009.7.17
 * update: -
 *
 */

$(function (){
	$(".wrap-qanda .question").click(function(){
		$(this).next().slideToggle("fast");
	});
});

