$(function () {
    $('.photo_gallery a').colorbox({

		rel:'group1', slideshow:true,

		onOpen:function(){ 
			$('.video').hide(); 
		},

		onClosed:function(){ 
			$('.video').show(); 
			//when the lightbox closes - it should put the old title back
			$('#firstpic').attr('title','Beverly Cleary photo gallery slideshow'); 
		}

	});

    $('#cboxWrapper').append('<div id="cboxCredit">Photo Credit: Beverly Cleary\'s Private Collection</div>');


});


//on click - change the title tag of the a to read the caption text - for the lightbox
//when the lightbox closes - it should put the old title back
$(function () {
    $('#firstpic').click(function() {
		
		 $(this).attr({ title: 'Age 6 (From <i>A Girl From Yamhill: A Memoir</i>)'	});


	});

});

