$(document).ready(function(){
	//show hide chat nick listings			   
   $("#online-support").click(function(event){
		$("#online-chat-nick").show("fast");
		event.preventDefault();	
	});
   $("#btnclose").click(function(event){
		$("#online-chat-nick").hide("fast");
		event.preventDefault();	
	});
});

