$(function() {
	$('#inloggen').click(function() {
		$('#login').css("width", "100%");
		return false;
	});

	$('#login .inner .close').click(function() {
		$('#login').css("width", "0");
	});
	
	$('#login_b').click(function() {
		var data = {
				username: $('#field_login').val(),
				password: $('#field_pass').val()
		};
		$.post('/modules/modules.login.ajax.php', data, function(data) {
			if(data == 'true') {
				$('#login').css("width", "0");
				window.location.replace("/nl/main/extranet/extranet.html");
			} else {
				alert('De opgegeven combinatie van gebruikersnaam en wachtwoord is onjuist. Neem contact op met het museum oud-overschie voor meer informatie');
			}
		});
		
		return false;
	});

});
