$(document).ready(function() {
	
	//FAQS
	$("dd").hide();
	
	$("dt").hover(function() {
		$(this).css("cursor","pointer");
	}, function() {
	
	});
	
	$("dt").toggle(function() {
		$(this).next("dd").slideDown(500);
	}, function() {
		$(this).next("dd").slideUp(500);
	});
	
});
