
$(document).ready(function(){
	$(".ls_map").hover(function(){
		$(this).find("img").addClass("hover")
	},function(){
		$(this).find("img").removeClass("hover")
	})
})
