function web(type,id){
	var type;
	var id;
	$.ajax({
		type: "GET",
		url: "data.php",
		data: "type="+type+"&id="+id,
		success: function(msg){
			$("#web_galery").html( msg );
		}
	});
}
