 $(function() {
                $('#activator').click(function(){
                	$.ajax({
						type: "GET",
						url: "/change_comms.php",
						success: function(msg){
							$('#commnews').html(msg);
                    		$('#overlay').fadeIn('fast',function(){
                        	$('#box').animate({'top':'100px'},500);
                    		});
				}
              });
                $('#boxclose').click(function(){
                    $('#box').animate({'top':'-800px'},500,function(){
                        $('#overlay').fadeOut('fast');
                    });
                });
			
            });
});
