// JavaScript Document
$(document).ready(function(){		
	$("#chat-drop-down").hide();
	$("#chat-button").click(function(){
		// slide toggle effect set to slow you can set it to fast too.
		$("#chat-drop-down").slideToggle("fast");
		return true;
	});
	$("#chat-drop-down .close-button").click(function(){
		// slide toggle effect set to slow you can set it to fast too.
		$("#chat-drop-down").hide("slow");
		return true;
	});		
});
