I think I solved your problem, but I can’t check it, because your violin does not work when you created it.
Change the code Appends image captions to the DOMas follows:
var appendCaptions = function(){
slider.children.each(function(index){
var title = $(this).find('img:first').attr('title');
var nc_subtitle = $(this).find('img:first').attr('nc-subtitle');
if (title != undefined && ('' + title).length && nc_subtitle != undefined && ('' + nc_subtitle).length) {
$(this).append('<div class="bx-caption"><span class="title">' + title + '</span><br/><span class="nc_subtitle">' + nc_subtitle + '</span></div>');
}
});
}
Now you can add subtitles to subtitle names:
<a href ="page.php">
<img src="http://calindragan.files.wordpress.com/2011/01/winter.jpg" title="title 1 here" nc-subtitle="The second title"/>
</a>
You can create subtitles the way you want using the CSS class nc_subtitle.
Hope this helps!
EDIT
JavaScript, , :
http://pastebin.com/0fvUezg1
HTML :
http://pastebin.com/T038drDV
.