// JavaScript Document

function showFullAlbum(albumtitle, photocount)
{
	if($('#' + albumtitle + '_all').css('display') != 'none')
	{
		$('#' + albumtitle + '_all').fadeOut();
		$('#' + albumtitle + '_link').html('View All (' + photocount + ' Photos)');
	} else {
		$('#' + albumtitle + '_all').fadeIn();
		$('#' + albumtitle + '_link').html('Collapse Album');
	}
}
