jQuery(document).ready(function() {
 jQuery('#shotboxwrapper').jqDrag('.jqDrag');

 jQuery('a#shoutboxclose').click(function(){
	jQuery('#shotboxwrapper').hide('slow');
	jQuery('#ajaxChatCopyright').hide('slow');
 })

 jQuery('a#shoutboxopen').click(function(){
	jQuery('#shotboxwrapper').show('slow');
	jQuery('#ajaxChatCopyright').hide('slow');
 })

 jQuery('#ajaxChatCopyright').hide('slow');

});
