﻿$(document).ready(function() {
	$(".faq_q").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default");
		});
	$(".faq_q").click(function(){
		if ($(this).next(".faq_a").is(":hidden")) {
		$(this).next(".faq_a").fadeIn("fast");
        } else {
		$(this).next(".faq_a").fadeOut("fast");
		}
		});
	});	