$(function(){
	$("#refreshimg").click(function(){
		var tmp = new Date();
		var suffix = tmp.getTime()
		$("#realimage").attr('src','formlib/captcha.php?'+suffix);
		return false;
	});
	
	$("#test").validate({
		rules: {
			captcha: {
				required: true,
				remote: "formlib/captcha.php"
			}
		},
		rules : {
        'service[]': { required: true, minlength: 1 }
		},
		messages: {
			captcha: "Correct captcha is required. Click the captcha to generate a new one"	
		},
		success: function(label) {
			//alert("Correct captcha!" + label);
			
			//$("label[for='captcha']").addClass("valid").text("Valid captcha!"); 
			//label.addClass("valid").text("Valid captcha!")
		},
		onkeyup: false
	});
	
	$("#test2").validate({
		rules: {
			captcha: {
				required: true,
				remote: "http://www.atascientific.com.au/formlib/captcha.php"
			}
		},
		messages: {
			captcha: "Correct captcha is required. Click the captcha to generate a new one"	
		},
		success: function(label) {		
		},
		onkeyup: false
	});
});

