/*jslint indent: 2*/
if ("undefined" === typeof Object.create) {
	(function () {
		function F() {

		}

		Object.create =
			function (object) {
				F.prototype = object;
				return new F();
			};
	} ());
}
