$(function() {
	$('#logout').click(function() {
		$.ajax({
			url: '/include/ajax/index.php',
			data: 'logout=1',
			type: 'post',
			success: function() {
				location.href = location.href;
			}
		});
		return false;
	})
}); 
