$(function(){
	$(".validate").validation({
		msgs: {
			required: "Required item",
			retype: "The content is not corresponding",
			email: "Please input correct E-mail Address",
			hankaku: "The em-size character cannot be used. ",
			tel: "Number and Hyphen '-' only",
			numonly: "Please input it only by the figure",
			zip: "Please input a correct ZIP code",
			check: "Required item",
			radio: "Required item",
			min: "Please input it more than a specified character",
			max: "Please input it by a specified character or less",
			submit: "There is a <strong>required item</strong> not input.<br />Please input everything."
		},
		extension: {
			position: "right",
			top: -2,
			left: 15
		},
		dialog: {
			dialogOpacity: .9
		}
	});
});

