/*
 * Creates the root container and any other child container with  package name of wth
 * @author Garima Parakh
// ************************************************************************************************/


var wth=function(){
return {};
}();// the parens here cause the anonymous function to execute and return


// ************************************************************************************************/
/**create the child container under wth with  package name of wth.cruise**/
wth.cruise= (function () {
	return  {
	}	
}()); // the parens here cause the anonymous function to execute and return



