var timerId;
var orgs;
var fader;

function fadeOrgList(id) {
	orgs = document.getElementById(id);
	fader = new Fadomatic(orgs, 2, 0);

	//first hide the element
	fader.hide();
	
	//set a timer to do the list fade in 2 secs 
	timerId = setTimeout("doFade()", 1500);	
	
}

function doFade() {
	clearTimeout(timerId);
	
	//alert(orgList.currentStyle.hasLayout);
	fader.fadeIn();
}
