jQuery(function($) {
	
	
	/**
	 * includes a file to the document
	 */
	var includeFile = function(filePath) {
		
		var script = document.createElement('script');
		script.src = filePath;
		script.type = 'text/javascript';
		document.getElementsByTagName('head')[0].appendChild(script);
	}
	
	
	/**
	 * The Main Function Entrypoint
	 */
	var main = function() {
		
		includeFile(XWK.host + 'App/src/js/dropdown-vertical.js');
	};
	main();
	
	
});


