jQuery(document).ready(function(){
	jQuery('#location_image').click(function(){
		jQuery(".location_image").appendTo('body').show().css({opacity: 0.6}); // ¥[³z©ú¦Ç©³
		jQuery(".location_image_bg").appendTo('body').show().css({
			paddingLeft: ((jQuery("body").width() - jQuery(".location_image_bg img").width()) / 2)
		});
	});
	jQuery(".location_image_bg").click(function(){
		jQuery(".location_image").hide();
		jQuery(".location_image_bg").hide();
	});
});

