$(function(){

$("#logout").click(function(){
    $("#logoutLink").html("<img src='../../images/loading.gif'>");
	http('POST','http://www.nhwba.org/includes/members/login/act_Logout.cfm',returned_logout);
});


function returned_logout(obj){
   if(obj.error=="true"){
      alert("there was an error loginning out. The webmaster has been notified of the issue");
   }else{
      window.location.reload();
   }
  } 
});
