$(function(){
	$("div.menu ol li img").mouseover(function(){
		$(this).css("background-image", "url('img/menu_bg_v.gif')");
	});

	$("div.menu ol li img").mouseout(function(){
		$(this).css("background-image", "url('img/menu_bg_n.gif')");
	});

});