/*requires jquery-1.3.2.min.js*/

/*
	Enables Helppopups
	Requires the jQuery library
*/

$(function() {
	$(".HelpPopup").each(function() {
		$(this).hover(function() {
			$(".HelpInfo", $(this)).show();
		}, function() {
			$(".HelpInfo", $(this)).hide();
		});
	});
});