jQuery(document).ready(function() {
	// Make the Captcha hint more helpful by switching the title text with the actual HTML text on click
	jQuery('.help').click(function() {
		var theText = jQuery('.help').text();
		var theTitle = jQuery('.help').attr('title');
		
		jQuery('.help').text(theTitle);
		jQuery('.help').attr('title', theText);
		
		return false;
	});
});