/**
 * Preload Images jQ plugin
 */
jQuery.preloadImages = function () {
	jQuery.each(arguments, function () {
		jQuery('<img>').attr('src', this);
	});
};
