/**
 * @author user
 */
	
	function album_callback(carousel)
	{
		$('#btn-prev').click(function(){
			carousel.prev();
		});
		
		$('#btn-next').click(function(){
			carousel.next();
		});
		
		$('#article_photos li a').click(function(){
			$('#album_photo_container').attr('src', $(this).attr('href') );
			$('img', $(this).parent().parent()).removeClass('hover');
			$('img', $(this)).addClass('hover');
			$(this).blur();
			return false;
		});
	}
	
	$(document).ready(function(){	
		
		$('#article_photos').jcarousel({
			visible: 4,
			buttonNextHTML: null,
			buttonPrevHTML: null,
			initCallback: album_callback
		});
		
	});

