/**
 * Author:  Ed Stivala n3w media
 * Date:    June 2009
 * Project: simpleMailer sales website
 * Purpose: Holds all of the utility functions used by the site
 **/
// define the function for preloading images
jQuery.preloadImages = function()
				{
					for(var i = 0; i<arguments.length; i++)
						{
							jQuery("<img>").attr("src", arguments[i]);
						}
				}
