$(document).ready( function() {
	$("td.td_class a").mouseover( function() {
		$("div.menu_item_").hide();
	});
	$("table.b_content").mouseover( function() {
		$("div.menu_item_").hide();
	});
	$("div#id_width_main").mouseover( function() {
		$("div.menu_item_").hide();
	});
	$("td.td_class").mouseover( function() {
		$("div.menu_item_").hide();
	});
	$("td.td_class").mouseover( function() {
		$(this).children("div.menu_item_").show();
	});
});

