$(function() {

$("dl.help").mouseenter(function() {
	$("dl.help-box").remove();
	var helpBox = $(this).clone()
		.removeClass().addClass("help-box")
		.append('<dd class="end"></dd>')
		.mouseleave(function() {
			$("dl.help-box").remove();
			//if ($.browser.msie && $.browser.version == 6) {
			//	$("select").css("visibility", "visible");
			//}
		});
	$(document.body).append($(helpBox));
	$(helpBox)
	.css("left", $(this).offset().left - $(helpBox).width() - $("#topBar").offset().left)
	.css("top", $(this).offset().top)
	.css("visibility", "visible");
	//if ($.browser.msie && $.browser.version == 6) {
	//	$("select").css("visibility", "hidden");
	//}
});

});

