$(document).ready(function() {
 
$('#nav_supp img:not(.active), #nav_main img:not(.active), #nav_sub img:not(.active)').each(function() {
	var imgFile = $(this).attr('src');
	var preloadImage = new Image();
  	var imgExt = /(\.\w{3,4}$)/;
 	preloadImage.src = imgFile.replace(imgExt,'_h$1');
	$(this).hover(
		function() {
			$(this).attr('src', preloadImage.src);
		},
		function () {
			$(this).attr('src', imgFile);
		}
	); // end hover
}); // end each
}); // end ready()
