$(document).ready(function(){
$.fn.jOverlay.options = {
	method : 'GET',
	data : '',
	url : '',
	color : '#000',
	opacity : '0.6',
	zIndex : 99999,
	center : true,
	imgLoading : '',
	bgClickToClose : true,
	success : null,
	timeout : 0,
	autoHide : true,
	css : {}
};
// ---- Форма -----
	var options = { 
	target: "#box1",
	timeout: 3000
};

$("#fbform").validate({
	submitHandler: function(form) {
	$(form).ajaxSubmit(options);
},
	messages: {
		email: '‚ведите корректный e-mail адрес!'
		}
	});
// ---- Форма -----
});