/*
 * jQuery.preloadImages
 * Date: 11/1/2009
 *
 * @projectDescription Preload images for whatever reason.
 * @author Kevin Kilcher for Domani Studios
 *
 * @id jquery.preloadImages
 * @param {string(s)} URL(s) of the image(s) to be loaded.
 * @return {jQuery} Returns the same jQuery object, for chaining.
 *
 * @example $.preloadImages('img/facebook-off.gif','http://www.google.com/logo.gif','blank.gif');
 */

(function($){
	$.preloadImages = function(){
		for(var i = 0; i < arguments.length; i++){
			$('<img>').attr('src', arguments[i]);
		}
	}
})(jQuery);
