// Class override file for metrony_album.js
// Used for Urban Schools Slideshow album
// Author rjw 10/18/2001

function fSchoolWriteNextButton(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" align="right" valign="top" border="0"></a>');
}

function fSchoolWritePrevButton(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" align="left" valign="top" border="0"></a>');
}

// Override class prototypes with custom functions
fo_WriteNext=fSchoolWriteNextButton;
fo_WritePrevious=fSchoolWritePrevButton;

var gAlbumNextAlt='Next School';
