$(document).ready(function(){ 
	
	$('#logout').click(function(){
		window.document.getElementById('loginformelements').style.display="none";
		window.document.getElementById('loginform').style.display="";
		// alert($(this).attr("id")); 
		var xhr = new XMLHttpRequest();
		xhr.open("GET", "/includes/logout.php?logout=yes", true);
		xhr.onreadystatechange = function(){
			if ( xhr.readyState == 4 ){
				if ( xhr.status == 200 ){
			  		document.getElementById("loginform").innerHTML = "YOU HAVE LOGGED OUT.";
					location.reload();
			  		//document.body.innerHTML = "My Name is: " + xhr.responseText;
	    		} else {
			       alert("ERROR: You were unable to log-out at this time.");
	  			}
	  		}
		};
		xhr.send(null);
	}); 
}); 

