$(document).ready( function(){
	
	$(".mst").click(function(){

		var id = $(this).attr("id");

		$.ajax({
			type: 'post',
			url: '/inc/ajaxfunc.php',
			data: 'id='+id+'&iq=shop',
			success: function(html){
				$('#sh').empty();
				$('#sh').append(html);
				$("#shop").show();
			}
		});

	});

	$("#close").click(function(){

		$("#shop").hide();
		
	});

});