google.load("jquery", "1.4.2");

google.setOnLoadCallback(function() {

	$(function() {
	    $(".hilight")
	        .mouseover(function() { 
	            var src = $(this).attr("src").match(/[^\.]+/) + "-hilight.png";
	            $(this).attr("src", src);
	        })
	        .mouseout(function() {
	            var src = $(this).attr("src").replace("-hilight", "");
	            $(this).attr("src", src);
	        });
	});
});
