jQuery(function(){ jQuery('img.captify').captify({ // speed of the mouseover effect speedOver: 200, // speed of the mouseout effect speedOut: 400, // how long to delay the hiding of the caption after mouseout (ms) hideDelay: 200, // 'fade', 'slide', 'always-on' animation: 'fade', // opacity of the caption on mouse over opacity: '0.7', // the name of the CSS class to apply to the caption box className: 'caption-overlay', // position of the caption (top or bottom) position: 'bottom', // caption span % of the image spanWidth: '100%' }); });