$(document).ready(function() {
    $('a#chatbutton').click(function() {
	$('#chat').animate({
	    "height": "toggle", "opacity": "toggle"
	}, "slow");
	return false;
    });
    $('a#chatclose').click(function() {
	$('#chat').animate({
	    "height": "hide", "opacity": "toggle"
	}, "slow");
	return false;
    });
    $('a#chatpop').click(function() {
	$('#chat').hide();
	return false;
    });
    $('#chatpop').popupWindow({ 
    	centerBrowser:1,
	width:710,
	height:510
    }); 
});

