jQuery.preloadImages = function(container, imageList)
{
	for(var i = 0; i<imageList.length; i++)
	{
		var oImage = new Image();
		oImage.src = imageList[i];
		oImage.onload = function() {
			alert(this.width);
		}
	}
}