$(document).ready(function() {
	xOffset = 10;
	yOffset = 30;
	$("span.question").hover(function(e) {
		var link = $(this).parent("p").attr("class");
		$("div." + link).fadeIn("def");
	}, function() {
		var link = $(this).parent("p").attr("class");
		$("div." + link).fadeOut("def");
	});
});
