function veryLazy(conf){
	for(x in conf){
		conf[x]['src'] = $g['JQ_PLUGIN']  +  conf[x]['name'] + '/' + conf[x]['name'] + '.js';
		conf[x]['cache'] = true;
		if(conf[x]['dependencies'] != undefined){
			for(y in conf[x]['dependencies']){
				for(z in conf[x]['dependencies'][y]){
					if('js' == z){
						conf[x]['dependencies'][y][z] = $g['JQ_PLUGIN'] + conf[x]['name'] + '/' + conf[x]['dependencies'][y][z];
					}else{
						conf[x]['dependencies'][y][z] = $g['CSS_JQ'] + conf[x]['name'] + '/' + conf[x]['dependencies'][y][z];
					}
				}
			}
		}
		$.lazy(conf[x]);
	}
}

veryLazy([
	{
		name: 'scrollTo'
	}
]);



