$(document).ready(function(){
	
	// navi
	$(".navi li").hover(function(){
		$(this).css("background-image", "url(img/navi_over_bg.gif)");
	},function(){
		$(this).css("background-image", "none");
	});	
	
	
	//$(".left span").height( $(".right").height() );
	
	//var left_span_height = $("#content").height();
	
})