jQuery(document).ready(function() {
	jQuery('#dialog').jqm();
	jQuery('#sendPassword').click(function() {
		jQuery('.errorInfo').html('');
		var pass = jQuery('#password').val();
		var data = {
			password: pass
		};
		if (pass != '') {
			var urlStr = 'http://straburzynski.pl/wp-content/themes/straburzynski/do-login.php';
			jQuery.ajax({
				type: 'POST',
				url: urlStr,
				data: data,
				success: function (data) {
					var jsonObj = jQuery.parseJSON(data);
					if (jsonObj.success != null) {
						location.href = jsonObj.success;
					} else {
						jQuery('.errorInfo').html(jsonObj.error);
						jQuery('#dialog').animate({ marginLeft: '-140px'}, 50).animate({ marginLeft: '-180px'}, 50).animate({ marginLeft: '-140px'}, 50).animate({ marginLeft: '-150px'}, 50);
					}
				}
			});
		} else {
			jQuery('.errorInfo').html('Wpisz hasło!');
		}
	});
});
