$(document).ready(function ()
{
	$("img.menu_img_button").hover(
		function ()
		{
			$(this).attr("_out_src", $(this).attr("src"));
			$(this).attr("src", $(this).attr("_over_src"));
		},
		function ()
		{
			$(this).attr("src", $(this).attr("_out_src"));
		}
	);
});