$(document).ready(function() {	
	$('#captcha').next('a').click(function() {		
		$('#captcha').attr('src', '/users/captcha?' + Math.round(Math.random(0)*1000)+1);
		return false;
	});
});

