

function adjustThings(){
	var bottomPager = $A($("footer").getElementsByClassName("pagerParts"));
	if (bottomPager.length > 0){
		bottomPager.each(function(i){
			i.style.fontSize = "12pt";
		});
	}
}


Event.observe(window, "load", adjustThings);