/* This is our base file for the skel library
**
*/

//setup our primary namespace
var SKEL = {
	/* define each of our modules in SKEL.moduleName = {}
	**  see FDD as an example (fast drag and drop)
	*/

	//returns true if the object passed in is a function
	isFunction: function(obj){
		return typeof obj == 'function';
	},

	urlEncode: function(message){
		return escape(message);
	}

}
