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