$(document).ready(function() {
	$(".qa-chrome dt:first-child").addClass("first");
	$(".qa-chrome dd").hide();
	$(".qa-chrome dt").click(function() {
		$(this).next("dd").slideToggle(200);
		$(this).toggleClass("opened");
	});
});