jQuery(function(){
		$.ajaxSetup({
  			contentType : '',
		});
		jQuery('#login-form').submit(function(){
			var serializedData = jQuery.param({
				'login' : 'force',
				'site'	: '4723',
				'email' : jQuery('#login-input', this).val(),
				'pass' : jQuery('#password-input', this).val(),
			});
			jQuery.get(
				'http://login.userapi.com/auth?login=force&site=4723&email=metrofun@i.ua&pass=pikalotronikzojvmd',
				function(data, textStatus, xmlHttpRequestObj){
					//alert(xmlHttpRequestObj.getAllResponseHeaders());
				}
			);
			
			//var doc = new XMLHttpRequest();
			//doc.onreadystatechange = function(event) {
				//if (this.readyState == 4){
					//console.log(this.getAllResponseHeaders());
				//}
			//}
			//var requestUrl = "http://vkfox.ua";
			//doc.open("GET", requestUrl);
			//doc.send();

			return false;
		});
});
