jQuery.preloadImages = function ()
{
	jQuery.each (
		arguments,
		function (e)
		{
			jQuery ('<img />').attr ('src', this);
		}
	);
}

