// Class override file for metrony_album.js
// Used for Urban Schools Slideshow album
// Author rjw 10/18/2001; altered by CBJ for use on the Oldnyc photo gallery 10/25/01

function fOldnycWriteNextButton(bIncludeTextLink){
	document.writeln('<a href="javascript:fAlbumGoNext()">'+((bIncludeTextLink)?'<strong>Next</strong><br>':''));
	document.writeln('<img alt="'+gAlbumNextAlt+'" src="/images/buttons/rightarrow.gif" width="21" height="23" valign="top" border="0"></a>');
}

function fOldnycWritePrevButton(bIncludeTextLink){
		document.writeln('<a href="javascript:fAlbumGoPrevious()">'+((bIncludeTextLink)?'<strong>Previous</strong><br>':''));
		document.writeln('<img alt="'+gAlbumPreviousAlt+'" src="/images/buttons/leftarrow.gif" width="21" height="24" valign="top" border="0"></a>');
}

// Override class prototypes with custom functions
fo_WriteNext=fOldnycWriteNextButton;
fo_WritePrevious=fOldnycWritePrevButton;

var gAlbumNextAlt='Next';
