Looking for a way to put the caption inside the image inside a scrollable that appears on hover. I tried prying some code (below) from another site of mine, but it is doing strange things to the scrollable (after initial hover it puts a "line feed" or something and the rest of the scrollable moves down a line). Any ideas or suggestions?
<script type="text/javascript">
// execute your scripts when the DOM is ready. this is a good habit
$(function() {
// initialize scrollable
$("#csPixArea").scrollable({size: 8}).circular();
$("#csPixArea a").hover(function(){
$(".desc").css("display", "block");
}, function() {
$(this).find('img').removeClass("hover").stop()
});
});
</script>
