var qForm = new Validate();

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

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

qForm.addRules
(
	{
		id:		'contents',
		option:	'required',
		error:	'お問い合わせ内容をご記入ください'
	}
);


