

function SImage(path, fnc)
{
	var img=new Image();
	img.src= path;
	img.onload = fnc.nextImage();
	
	return this;
}

