Namespace example

	var Prabir = Prabir || {};
	Prabir.Shrestha = Prabir.Shrestha || {};
	Prabir.Shrestha.MySDK = function(){
		 return {
			  public_method : function() {
				   alert('I am a public method');
			  }
		 };
	};
	var mySdk = new Prabir.Shrestha.MySDK();
	mySdk.public_method();
    
For more information please visit : http://www.prabir.me