$(
	function(){
		$('.box').hover(
			function(){
				$(this).addClass('hover')
			},
			function(){
				$(this).removeClass('hover')
			}			
		);
		$('.box').click(
			function(){
				window.open('/_map.html?path=/i/map/'+$(this).attr('id')+'.png',123,"scrollbars=1,resizable=1,dependent=0,width=900,height=600") 
			}
		);
		
	}
)
