/**
 * Storm.js
 * Author: Lyubomir Petrov
 * Company: AxisVista Ltd
 * Version: $Id$
 */
if(typeof(Storm) == "undefined") var Storm = {};

/**
 * Misc Functions are stored in Storm.Api
 */
Storm.Api = {
	loader: {
		js: function(file){
			new Asset.javascript(file + '.js');
		},
		css: function(file) {
			new Asset.css(file + '.css');
		},
		image:function(file,callBack) {
			new Asset.image(file, {onload: callBack});
		}
	}
}
