jQuery(function($) {
	var opacity = '0.8';
	$('#camp-stories .thumbnail').click(function(e) {
		if ($(this).parent().hasClass('selected')) return false; // don't do anything if already selected!
		
		$('#camp-stories ul li').removeClass('selected');
		$('#camp-stories ul li .excerpt').hide();
		$(this) // thumbnail
			.next('.excerpt').fadeIn(500)
			.parent().addClass('selected');
		$('#camp-stories ul li:not(.selected) .thumbnail').animate({opacity:opacity}, {duration:300});
		return false;
	});
	$('#camp-stories li:not(.selected) .thumbnail').css('opacity', opacity);
	$('#camp-stories li .thumbnail')
		.bind('mouseover', function(e){
			$(this).animate({opacity:'1'}, {duration:300});
		}).bind('mouseout', function(e) {
			if (!$(this).parent().hasClass('selected')){
				$(this).animate({opacity:opacity}, {duration:300});
			}
		});
});