UPDATE 기자 2017.01.16 17:09:34
정승 농어촌公사장-은자이 세네갈대사, 농업협력 논의
세네갈 농업개발에 농어촌公 참여 희망, 전문가 파견해 세부방안 구체화하기로
정승 한국농어촌공사 사장은 지난 6일 서울 충무로에 위치한 주한 세네갈대사관에서 마마두 은자이(Mamadou Ndiaye) 대사를 만나 양국 간 농업분야 협력방안에 대해 논의했다.
은자이 대사는 이 자리에서 세네갈 정부가 추진 중인 ‘농업종합개발사업’에 농어촌공사의 적극적인 참여를 요청했다. 특히 농업분야 민관협력사업
$(function() {
$('#news_body_area img').each(function(i) {
var tmpImage = new Image();
tmpImage.src = $(this).attr('src');
if (parseInt(tmpImage.width) > 550) {
$(this).css('width', '550px');
}
});
});
var MYNEWS_PHOTO_LIMIT_WIDTH = parseInt("550");
$("img[xtype='photo']").load(function(obj) {
var title = $(this).attr('title');
$(this).attr('alt', title);
$(this).removeAttr('title');
var image_align_class = "";
var clazz = $(this).attr('class');
if (clazz != null && clazz.length > 0) {
image_align_class = " "+clazz;
}
$(this).attr('class', 'img');
$(this).removeAttr('xtype');
var w = parseInt($(this).css('width'));
if (isNaN(w)) {
w = 0;
}
var h = parseInt($(this).css('height'));
if (isNaN(h)) {
h = 0;
}
if (w <= 0) {
var timg = new Image();
timg.src = this.src;
w = parseInt(timg.width);
if (isNaN(w)) {
//...
}
}
if (w > MYNEWS_PHOTO_LIMIT_WIDTH) {
var pct = parseFloat(MYNEWS_PHOTO_LIMIT_WIDTH) / parseFloat(w);
w = MYNEWS_PHOTO_LIMIT_WIDTH;
if (pct > 0 && pct < 1 && h > 0) {
h = Math.floor(parseFloat(h) * pct);
}
}
$(this).css('width', w+"px");
if (h > 0) {
$(this).css('height', h+"px");
}
$(this).wrap("");
if (title != null && title.length > 0) {
if (title.indexOf('▲') == -1) {
title = '▲' + title;
}
$(this).after("