/*preload images, pass array, returns new image object*/
$.fn.preload = function() {this.each(function(){
	var i = $('<img/>');
	i[0].src = this;
	return i;
});}
/*usage: $(["imagePath1.jpg", ....]).preload(); */
