// JavaScript Document

$(document).ready(function(){
	$('body').append('');
	$("#message_a").click (
			function(){ $("#message").animate({ right: "0px"   }, 500 );}
	    );
});
$(document).ready(function(){
	$('body').append('');
	$("#delete2").click (
			function(){ $("#message").animate({ right: "-550px"   }, 500 );}
	    );
});
$(document).ready(function(){
	$('body').append('');
	$("#main").click (
			function(){ $("#message").animate({ right: "-550px"   }, 500 );}
	    );
});
