remove unneccessary Mojo object check
diff --git a/framework/phonegap.js b/framework/phonegap.js
index 6a8eaa4..790c72d 100644
--- a/framework/phonegap.js
+++ b/framework/phonegap.js
@@ -800,10 +800,6 @@
 //		Mojo Dependencies - we still need to rely on these minimal parts of the Mojo framework - should try to find if we can get access to lower level APIs
 //							so that we can remove dependence of Mojo
 //===========================
-
-if (typeof(Mojo) != 'object') {
-	console.log("Mojo already exists. Make sure to remove it from your index.html");
-}
 	
 Mojo = {
 	contentIndicator: false,
diff --git a/js/mojo.js b/js/mojo.js
index b0a2368..7e96202 100644
--- a/js/mojo.js
+++ b/js/mojo.js
@@ -2,10 +2,6 @@
 //		Mojo Dependencies - we still need to rely on these minimal parts of the Mojo framework - should try to find if we can get access to lower level APIs
 //							so that we can remove dependence of Mojo
 //===========================
-
-if (typeof(Mojo) != 'object') {
-	console.log("Mojo already exists. Make sure to remove it from your index.html");
-}
 	
 Mojo = {
 	contentIndicator: false,