You may try declaring it this way:
(function Init(){
/*...*/
})();
But this will reduce usage of this function into it's body
Other way is to separate declaration from execution:
var Init = function(){
/*...*/
},
initResult = (function(){ return Init(); })();