$(document).ready(function() {

	$("#logout").click(function(){
		$.ajax({
		  url: "/it/ajax/logout.php",
		  type: 'POST', 
		  cache: false,
		  success: function(html){
			  window.location = "/it/";
		  }
		});
	});
		
	
});
