var cForm = new Validate();

cForm.addRules
(
	{
		id:		'name',
		option:	'required',
		error:	'ご担当者名をご記入ください'
	}
);

cForm.addRules
(
	{
		id:		'email',
		option:	'email',
		error:	'メールアドレスを正しくご記入ください'
	}
);

cForm.addRules
(
	{
		id:		'email2',
		option:	'email',
		error:	'確認用メールアドレスを正しくご記入ください'
	}
);

cForm.addRules
(
	{
		id:		'kind',
		option:	'required',
		error:	'ご相談の種類を選択してください'
	}
);

cForm.addRules
(
	{
		id:		'contents',
		option:	'required',
		error:	'ご相談内容をご記入ください'
	}
);


