$('document').ready(function(){
	
	$('.heroes #content .left-col #past-presidents-carousel').jCarouselLite({
        btnNext: '#past-presidents .next',
        btnPrev: '#past-presidents .prev',
        start:0,
        visible: 1,
        afterEnd: function(item) {
			$('.heroes #content .left-col #past-presidents .photo-title').html(item.children(":first").attr('alt'));
		}
    });
	
	$('.heroes #content .left-col #quotes-carousel').jCarouselLite({
        btnNext: '#quotes .next',
        btnPrev: '#quotes .prev',
        start:0,
        visible: 1
    });
	
});