// JavaScript Document

<!--
function _communiacs_show(element){
	element.className += "hover";
}

function _communiacs_hide(element){
	element.className = element.className = "";
}
//-->

function communiacs_flexcroll_cycle(p_elem_id, p_old_height) {
	if(!p_old_height) {
		p_old_height = 0;
	}
	var t_height = 0;
	if(document.getElementById(p_elem_id + "_contentwrapper")) {
		t_height = document.getElementById(p_elem_id + "_contentwrapper").offsetHeight;
	}
	if(t_height != p_old_height) {
		CSBfleXcroll(p_elem_id);
	}
	setTimeout("communiacs_flexcroll_cycle('" + p_elem_id + "'," + t_height + ")",100);
}

