jQuery(document).ready(function() {
	$("div.menu_bg").hover(
	  function () {
		  $(this).addClass("menu_hover_bg");
		  $(this).prev().addClass("menu_hover_left");
		  $(this).next().addClass("menu_hover_right");
	  }, 
	  function () {
		  $(this).removeClass("menu_hover_bg");
		  $(this).prev().removeClass("menu_hover_left");
		  $(this).next().removeClass("menu_hover_right");
	  }
	);
});

