$(document).ready(function() {
	$(" dl.faq_dl dt").hover(function(){
		$(this).css("cursor","pointer"); 
		$(this).css("color","#C65200"); 
		$(this).css("text-decoration","underline");
		},function(){
		$(this).css("cursor","default"); 
		$(this).css("color","#E87400"); 
		$(this).css("text-decoration","underline");
		});
	$(" dl.faq_dl dd").css("display","none");
	$(" dl.faq_dl dt").click(function(){
		$(this).next().slideToggle("fast");
		});
		
	$(" dl.faq_dl dd").click(function(){
		$(this).slideToggle("fast");
		});
});
