$(document).ready(function(){
	$(".info_faq dt").prepend("<span>» </span>");
	
	$(".info_faq").find("dd").hide();

	$(".info_faq").find("dt").toggle(function(){
		$(this).next().slideDown("slow");	
		$(this).find("span").not(".titulo").html("<img src='"+webroot+"img/icon/arrow2.png' width='6' height='6' align='bottom'> ");
	}, function() {
		$(this).next().slideUp("slow");
		
		$(this).find("span").not(".titulo").html("» ");
	});
	
	$("#faq dl:last").css("border", "none");
});
