-
확대이미지 영역
-
[3~4월 제약사 이모저모]동국제약, 멀츠, 온코닉테라퓨틱스, 한올바이오파마 등 소식
-
[3~4월 제약사 이모저모]갈더마, 동화약품, 셀트리온, 한소제약, 현대ADM 등 소식
-
[3~4월 제약사 이모저모]동국제약, 노바티스, 베링거인겔하임, 셀트리온, 현대ADM 등 소식
);
clearInterval(timer);
})
$('#simpleSkin06_9 .thumbnail li a').bind('mouseleave focusout',function(){
mouseOverIndex = $(this).parent('li').index()
numChk = mouseOverIndex;
if(numChk < galleryLength - 1){
numChk++;
}else{
numChk = 0;
}
timer = setInterval(autoRolling,3000);
})
$('#simpleSkin06_9 .imageBig').bind('mouseenter focus',function(){
clearInterval(timer);
})
$('#simpleSkin06_9 .imageBig').bind('mouseleave focusout',function(){
timer = setInterval(autoRolling,3000);
})
function autoRolling(){
thumbnailContent = $('#simpleSkin06_9 .thumbnail li:eq(' + numChk + ')').html();
$('#simpleSkin06_9 .imageBig').html(thumbnailContent);
$('#simpleSkin06_9 .thumbnail li a').removeClass('on');
$('#simpleSkin06_9 .thumbnail li:eq(' + numChk + ') a').addClass('on');
if(numChk < galleryLength - 1){
numChk++;
}else{
numChk = 0;
}
};
var timer = setInterval(autoRolling,3000);
})(jQuery)