$(document).ready(function() {
	$("img[hover]").hover(function() {
		var tmp = $(this).attr('src');
		$(this).attr({'src': $(this).attr('hover'), 'hover': tmp});
	}, function() {
		var tmp = $(this).attr('hover');
		$(this).attr({'hover': $(this).attr('src'), 'src': tmp});
	});
	$.extend($.validator.messages, {
		required: "These field is required",
		minlength: "At lest {0} characters"
	});
	$("form").each(function(i, e) {
		$(this).validate();
	});
});
