$(document).ready(function(){
	
	$("a.menu_item").mouseover(function(){
		$(this).attr("style", "background-color: #ffe600");   							   
	});
	$("a.menu_item").mouseout(function(){
		$(this).attr("style", "background-color: #fff");   							   
	});
	
});
