$(document).ready(function(){
	$('div#chatbox').hide();

	$('#openchatbox').click(function(){
		$('div#chatbox').toggle(1000);
		return false;
	});

	$('div#chatboxclose').click(function(){
		$('div#chatbox').hide(200);
	});
});
