$(document).ready(function(){
	$("span.validation-advice, label.error").click(function(){
		$(this).fadeOut();
	});
	
	$('#kaptchaImage').click(function () { 
	    $(this).hide()
	      .attr('src', contextPath+'/kaptcha/kaptcha.jpg?' + Math.floor(Math.random()*100) )
	      .fadeIn(); 
	});
	
});
