function preloadImgs(){
	d = document
	args = preloadImgs.arguments
	if(d.images){
		idx = d.images.length
		for(i = 0 ; i < args.length ; ++i){
			img = new Image()
			img.src = args[i]
			d.images[idx] = img
			idx++
		}
	}
}
