// JavaScript Document

$(document).ready(function() {
							   
	$(".faq dd").hide();
		$(".faq dt").css("cursor","pointer");
		
		$(".faq dt").toggle(function(){
			$(this).next("dd").show();
		},function(){		
			$(this).next("dd").hide();
	});
						   });