﻿$(document).ready(function() {
	$("#header_menu ul li img").mouseover(function() {
		if ($(this).attr("src")){
			$(this).attr("src",$(this).attr("src").replace(".", "_on."));
		}
	});
	$("#header_menu ul li img").mouseout(function() {
		if ($(this).attr("src")){
			$(this).attr("src",$(this).attr("src").replace("_on.", "."));
		}
	});
});

