$(document).ready(function() {
	var $body = $('body');
	if($body.hasClass('posters') && $body.hasClass('all')==false) {
		// scroll through the posters
		var $posters = $('#posters');
		var $pagination = $('ul.pagination');
		$('a',$pagination).click(function(){
			var $clicked = $(this);
			var clicked_href = $clicked.attr('href');
			$('li',$pagination).removeClass('active');
			
			$.ajax({
				type: 'GET',
				url: clicked_href,
				dataType: 'html',
				success: function(html){
					$('li',$pagination).removeClass('active');
					$clicked.parent('li').addClass('active');
					
					var $html_new = $('#posters li',html).hide();
					$('li',$posters).fadeOut('slow',function(){
						$posters.find('li').remove().end().append($html_new).find('li').fadeIn('slow');
					});
				}
			});
			
			$clicked.blur();
			return false;
		});
	}
});