$(document).ready(function() {
	
	$('.gallery_img').mouseover(function() {
		$(this).children().children('.show_zoom').show()
	})
	$('.gallery_img').mouseout(function() {
		$(this).children().children('.show_zoom').hide()
	})
})
