$(document).ready(function(){
	$("input#cName, input#cEmail,textarea#cMessage,input#captcha").labelify({labelledClass: "thelabel"});
    $("#reseller").validate({
	//set the rules for the field names
	rules: {
		name: {
			required: true,
			minlength: 3
		},
		email: {
			required: true,
			email: true
		},
		message: {
			required: true,
			minlength: 10
		},
		captcha: {
			required: true,
			remote: "modules/captcha/captcha_process.php"
		}
	}
	});
  //Validation côté client:
  //name, email, comments, animer le bg.
  function clign(element){
  	$( element )
			.animate({ backgroundColor: "black" }, 200, "easein")
			.animate({ backgroundColor: "cc" }, 200, "easein")
			.animate({ backgroundColor: "black" }, 200, "easein")
			.animate({ backgroundColor: "cc" }, 300, "easein")
	}
	//Verification formulaire:
	//clign($("#cName"));
	
	//CAPTCHA
	$("#refreshimg").click(function(){
		$.post('modules/captcha/captcha_newsession.php');
		$("#captchaimage").load('modules/captcha/captcha_image_req.php');
		return false;
	});
	
    
    //Hide formular
	$("#info").click(function(){
		$("#reseller").toggle();
	} );
	//Etat de depart: caché.
	$("#reseller").hide();
	
});
