function imgPreLoader(a)
{
	var img = Array();
	for(i=0; i<a.length; i++)
	{
		img[i] = new Image();
		img[i].src = a[i];
	}
	return true;
}