
	
	/*  
	function (glow.ready) - Hide 'more mdata' content on load:
	*/
	/*
	glow.ready(function(){
		if (glow.dom.get("#more_mdata")){
			alert("doing 'more_mdata' hide");
			glow.dom.get("#more_mdata").className = "offscreen";
			if (glow.dom.get("#more_mdata_master")){
				glow.dom.get("#more_mdata_master").className = "hiding";
			}
		}
	});	
	*/
	
	/*  
	Function - show-hide toggle:
	*/
	/*
	Function togShowHide(){
		if (document.getElementById("more_mdata_master") && document.getElementById("contributors")){
			alert('Testing Show-hide toggle function');
			document.getElementById("contributors").className = "onscreen";
			if (document.getElementById("contributors-toggle-master")){
				document.getElementById("contributors-toggle-master").className = "showing";
			}
			return false;
		}
	}
	*/
	
	

	
	
	
	