$(document).ready(function() {
	$('div#controls a#left_arrow').bind("click", function(){
		var author = $(this).attr('rel');
		$('div#authors').animate({marginLeft: "222px", opacity: "hide"}, function(){
			$(this).css("margin-left", "-222px");
			$('div#authors').load('rmt_content.php', {author: author} , function(data){
				$('div#authors').animate({marginLeft: "14px", opacity: "show"});
			}); // load
		});// animate
		return false;
	});

	$('div#controls a#right_arrow').bind("click", function(){
		var author = $(this).attr('rel');
		$('div#authors').animate({marginLeft: "-222px", opacity: "hide"}, function(){
			$(this).css("margin-left", "222px");
			$('div#authors').load('rmt_content.php', {author: author} , function(data){
				$('div#authors').animate({marginLeft: "14px", opacity: "show"});
			}); // load
		});// animate
		return false;
	});
});
