$(document).ready(function(){
	
	$('#image-rotate').cycle({
		speed:   2000,
		timeout: 6000
	});
	
	$('#image-caption').html($('#collection-items li a:first').attr('title'));
	$('#image-detail img').attr('src', $('#collection-items li a:first').attr('href'));
	$('#collection-items li a:first').addClass('active');
	
	$('#collection-items li a').click(function(e){
		e.preventDefault();
		$('#collection-items li a').removeClass('active');
		$(this).addClass('active');
		$('#image-caption').html($(this).attr('title'));
		$('#image-detail img').attr('src', $(this).attr('href'));
		$('#image-detail img').attr('alt', $(this).attr('alt'));
		
	});
	
    $('.image-switch').each(function(i) {
        $(this).after('<p class="pagination switch'+i+'"></p>').cycle({
            fx:     'fade',
            speed:  'fast',
			height: 360,
            timeout: 0,
            pager:  '.switch' + i
        });
    });

	$('#care #col2 #inner-images img:last').addClass('last');
	
	$('#press .article-body').find('> p:first').addClass('first');
	
});
