/*$(document).ready(function() {
   Handler for .ready() called.
});*/
$(function() {
    $("img.menu_button").mouseover(function() { 
		if($(this).attr("src").search(/_over.+/) == -1) {
		  var src = $(this).attr("src").match(/[^\.]+/) + "_over.jpg";
		  $(this).attr("src", src);
		  $("img.menu_button").mouseout(function() {
			  var src = $(this).attr("src").replace("_over", "");
			  $(this).attr("src", src);
		  });
		}
	});
});
