var RollIt = { 
	timeout: Array(), 
	showPopup: function(id) { 
		//clearTimeout(this.timeout[id]);
		//if ($(id).style.display == 'none') { 
			//this.timeout[id] = setTimeout(function() {
				//new Effect.Appear(id, {duration:.1, fps:10})}, 50); 
		//} 
		$(id).style.display = 'inline';
	}, 
	hidePopup: function(id) {
		//if($(id).style.display == 'none') {
			//clearTimeout(this.timeout[id]);
		//} else { 
			//this.timeout[id] = setTimeout(function() {
				//new Effect.Fade(id, {duration:.1, fps:10})}, 50); 
			$(id).style.display = 'none';
		//}
	}
}
