function setScroll() {
	if (browser != "ie6") {
		var bodyClass = $$("body")[0].readAttribute("class");
		if (bodyClass == "contact" || bodyClass == "privacy") {
			$("content").setStyle({
				height: "554px",
				overflow: "hidden"
			});
		} else {
			$("content").setStyle({
				height: "231px",
				overflow: "hidden"
			});
		}
	}
}

function addlistScroller() {
	if (browser != "ie6") {
		$$("#content ol.lead").each(function(ol) {
			ol.insert({
				before: "<div id='listScroller'>"
			});
			Move.element(ol, "listScroller", "move");
		});
		setScroll();
	}
}