$("#capslide_img_cont") will get the first element.if you use 'Id' attribute,there will be not only one div with 'id' attribute.it's not good.so I suggest using 'name' attribute ,and then $("div[name='capslide_img_cont']").capslide.or using 'class' attribute if no one use 'ic_container' except this div.zhe code below:
$(function () {
$(".capslide\_img\_cont").capslide({
caption\_color: 'white',
caption\_bgcolor: 'black',
overlay\_bgcolor: 'black',
border: '',
showcaption: false
});
});
</script></pre></x-turndown>