// ======= start script ======
ims = el("source").getElementsByTagName("img");
N = ims.length;
run();

// ======= load images =======
function images_load(){
	var M=0;
	for(var i=0;i<N;i++){
		if(ims[i].complete){
			M++;
			resize();
		}
	}
	if(M<N)setTimeout("images_load()", 64);
}

images_load();
