/*
 Title:		sequence.js
 Description:	JavaScript to sequence through button titles
 Dependencies:	COUNTER: reset to 0 in index file
		BUTTON_DIR: directory containing button images
		BUTTONS[]: array containing button image names
*/

var i=COUNTER;

document.write( '<a href=',BUTTONS[i],'.htm',
	' onmouseover="a',i,'.src=\'',BUTTON_DIR,BUTTONS[i],'_over.gif\'"',
	' onmouseout="a',i,'.src=\'',BUTTON_DIR,BUTTONS[i],'_norm.gif\'"',
	' onclick=MRL_click(b',i,')>',
	'<img border=0 name=a',i,' src=',BUTTON_DIR,BUTTONS[i],'_norm.gif width=100 height=25></a>' ); 

COUNTER++;

