$.fn.preload = function() {
		this.each(function(){
			$('<img/>')[0].src = this;
		});
	}

// Usage:

$(['_img/bio_on.png','_img/books_on.png','_img/contact_on.png','_img/events_on.png','_img/press_on.png']).preload();


