$(function(){
	
	$('a.lightbox').fancyzoom({Speed:300,showoverlay:true});
		   
	$('.read').click(function(){
		$(this).parent('div.month-year').find('.hide').slideToggle();
		if( $(this).text() == 'View All' ){
			$(this).text('Hide');
		}else if( $(this).text() == 'Hide' ){
			$(this).text('View All');
		}
		
		return false;
	});
});