﻿(function ($) {
	jQuery.fn.preloadHovers = function() {
		return this.each(function() {
			var image = document.createElement('img');
			image.src = $(this).attr('src').replace('.png', '-hover.png').replace('.jpg', '-hover.jpg').replace('.jpeg', '-hover.jpeg').replace('.gif', '-hover.gif');
		});
	};
})(jQuery);
