google.load("jquery", "1.4.2");
google.setOnLoadCallback(function() {

	$('#navbar_container img').each(function(index) {
		if ($(this).attr("src").indexOf("_off") > -1) {
			$(this).hover(
				function () { 
					$(this).attr("src", $(this).attr("src").replace("_off", "_on"));
				},
				function () { 
					$(this).attr("src", $(this).attr("src").replace("_on", "_off"));
				}
			);
		}
	});
});
