
function randomString() {
	var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
	var string_length = 8;
	var randomstring = '';
	for (var i=0; i<string_length; i++) {
		var rnum = Math.floor(Math.random() * chars.length);
		randomstring += chars.substring(rnum,rnum+1);
	}
	return randomstring;
}

jQuery(document).ready(function() {
								
		$('#reloadCap').click(function()	{
									   
			$('#captcha1').attr('src','includes/captcha.php?'+randomString());
			
									   
									   });
		
		
		
		
		$("#partnerForm").validate({
					rules: {
					title: "required",
					firstname: "required",
					lastname: "required",
					company: "required",
					tel: "required",
					email: {
								required: true,
								email: true
							},
					captcha: 	{
									required: true,
									remote: "include/checkCap.php"
								}
						},
					errorPlacement: function(error,element) 
						{ 
							return true;
						}			
									
									});
		
		
		
		
								});

	
		
	
