var arrayElements=document.getElementById("testimonials").getElementsByTagName("h2");
var intElements=arrayElements.length;
for(var i=0;i<intElements;i++){
	arrayElements[i].id = i;
}
document.getElementById("testimonialsmask").style.height=arrayElements[6].offsetTop+"px";
document.getElementById("testimonialsmask").style.overflow="hidden";
for(var i=0;i<intElements;i+=6){
	document.getElementById("navigation").innerHTML += '<a href="#" onclick="showPage(\''+i+'\');">'+(i/6+1)+'</a> &nbsp; &nbsp; &nbsp; ';
}
function showPage(theAnchor){
	var theAnchorFinal = parseInt(theAnchor, 10)+6;
	if(theAnchorFinal >= intElements){ theAnchorFinal = "final"; }
	document.getElementById("testimonials").style.position="relative";
	document.getElementById("testimonials").style.top="-"+document.getElementById(theAnchor).offsetTop+"px";
	document.getElementById("testimonialsmask").style.height = (document.getElementById(theAnchorFinal).offsetTop-document.getElementById(theAnchor).offsetTop)+"px";
}