// Pre Load Images
var theImages = new Array();
theImages[0] = 'Rows0.jpg';
theImages[1] = 'Rows1.jpg';
theImages[2] = 'Rows2.jpg';
theImages[3] = 'Rows3.jpg';
theImages[4] = 'Rows4.jpg';
theImages[5] = 'Rows5.jpg';
theImages[6] = 'Rows6.jpg';
theImages[7] = 'Rows7.jpg';
theImages[8] = 'Rows8.jpg';
theImages[9] = 'Rows9.jpg';
theImages[10] = 'Rows10.jpg';
theImages[11] = 'Rows11.jpg';
theImages[12] = 'Rows12.jpg';
theImages[13] = 'Rows13.jpg';
theImages[14] = 'Rows14.jpg';
theImages[15] = 'Rows15.jpg';
theImages[16] = 'Rows16.jpg';
theImages[17] = 'Rows17.jpg';
theImages[18] = 'Rows18.jpg';
theImages[19] = 'Rows19.jpg';
theImages[20] = 'Rows20.jpg';
theImages[21] = 'Rows21.jpg';
theImages[22] = 'Rows22.jpg';
theImages[23] = 'Rows23.jpg';
theImages[24] = 'Rows24.jpg';

var whichImage = 0;

function addcounter()
{
	if (whichImage < theImages.length-1)
	{
		whichImage=whichImage+1;
		document.Rows1.src=theImages[whichImage];
	}
}

function subcounter()
{
	if (whichImage > 0) 
	{
		whichImage=whichImage-1;
		document.Rows1.src=theImages[whichImage];
	};
}

