// Pic Bar - Image Hover Function

$(document).ready(function() {

$('#Body_Top img').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).fadeTo('normal', 1);
		},
		function () {
			$(this).attr('src', imgFile).fadeTo('normal', 1);
		}
	); // end hover
}); // end each
}); // end ready()

