/**
*/
jQuery(document).ready( function() {
	jQuery(".slide_tweetbox").hover(function() {
			jQuery(".slide_tweetbox").stop(true, false).animate({right:"0"},"medium");
				}, function() { 
						jQuery(".slide_tweetbox").stop(true, false).animate({right:"-315"},"medium"); 
						}, 
							500);
});

