<!--

var MyPage=new Array; {
MyPage[1]="NPG-feeding_1.shtml"; 
MyPage[2]="NPG-feeding_2.shtml"; 
MyPage[3]="NPG-feeding_3.shtml"; 
MyPage[4]="NPG-feeding_4.shtml"; 
MyPage[5]="NPG-feeding_5.shtml"; 
MyPage[6]="NPG-feeding_6.shtml"; 
MyPage[7]="NPG-feeding_7.shtml"; 
MyPage[8]="NPG-feeding_8.shtml"; 
} 

function goPrev() { 
	if (ThisPageNumber != 1) { 
		ThisPageNumber=ThisPageNumber-1; 
		window.location=MyPage[ThisPageNumber]; 
	} 
}

function goNext() { 
	ThisPageNumber=ThisPageNumber+1; 
	if (ThisPageNumber >=MyPage.length) { 
		ThisPageNumber=ThisPageNumber-1; 
	} 
	window.location=MyPage[ThisPageNumber]; 
}

-->

