$(document).ready(function() {
	$(".word dt").hover(function(){
		$(this).css("cursor","pointer"); 
	},function(){
		$(this).css("cursor","default"); 
		});
	$(".word dd").css("display","none");
	$(".word dt.before").click(function(){
		$(this).toggleClass("after");
		$(this).next().slideToggle("normal");
	});
});

