// this jquery block calls out to mediaserver.tfbc.com
// to check if there are agents logged in.
// In which case it hides or shows elements of the webapplication
$(document).ready(function () {
   // load Json data from the hasgents.php script
   $.getJSON("hasagents.php",{ chat_queue: "sales" },
      function(data){
       //alert("Agent Count: " + data.iAgentCount);
        if ( data.iAgentCount > 0 ) {
          $(".chat-disabled").css("display","none");
          $(".chat-enabled").css("display","block");
        } else {
          $(".chat-disabled").css("display","block");
          $(".chat-enabled").css("display","none");
        }
    });
});

