/*
# $Id$
#
# Any Javascript that a CMS module makes globally available should be encapsulated within this namespace,
# under it's own sub-namespace in UpperCamelCaps format.
# eg:	For the "user" module, create the namespace "GCms.Module.User"
*/

if(GCms!=null) {
	/*
	# @namespace GCms.Module
	*/
	GCms.Module = {
	}
}
else {
	alert("'GCms' namespace is not defined.");
}
