$(document).ready(function(){
    $("div.menu_item a").hover(function() {
	$(this).parent().css("backgroundColor", "#000166");
    }, function() {
	$(this).parent().css("backgroundColor", "");
    });
});
