$(document).ready(function() {
	/*
	 * Popup schließen
	 */
	$('#close_popup').click(function(){
		$('#popup_darkbox').fadeOut(400, function(){
			$('#popup_darkbox_black').fadeOut(300);
		});
	});
	
	
	$('.sidebar_about_showmore').click(function() {
		$(this).hide();
		$('#about_more').slideDown();
	});

/* 	$('blockquote p:last').addClass('quoteauthor'); */

	var num_authors = $("#author_list li").size();
	var rechter_rand = 10 + (num_authors-1)*(-220);
	
	
	$('.next').click(function() {
		
		if (!$('.prev').is(":visible")) {
			$('.prev').fadeIn(100);
		}
		
		$('#author_list ul').animate({
			left: '-=220px'
		}, function() {
			if ($('#author_list ul').position().left == rechter_rand) {
				$('.next').fadeOut(100);
			} 
		});
	});
	
	$('.prev').click(function() {

		if (!$('.next').is(":visible")) {
			$('.next').fadeIn(100);
		}

		$('#author_list ul').animate({
			left: '+=220px'
		}, function() {
			if ($('#author_list ul').position().left == 10) {
				$('.prev').fadeOut(100);
			} 
		});
	});
});
