$(document).ready(function(){ 
	
	$('.menu_button').mouseover(function(){
		$(this).css("background-color","#ebebeb");
		$(this).css("border","solid 1px #AAA");
	});
	$('.menu_button').mouseout(function(){
		$(this).css("background-color","white");
		$(this).css("border","solid 1px white");

	});
	

});
