
function nm_onload() { 

 	$('img.captify').captify({
		// all of these options are... optional
		// ---
		// speed of the mouseover effect
		speedOver: 150,
		// speed of the mouseout effect
		speedOut: 200,
		// how long to delay the hiding of the caption after mouseout (ms)
		hideDelay: 100,
		// 'fade' or 'slide'
		animation: 'fade',	  	
		// text/html to be placed at the beginning of every caption
		prefix: '',	
		// the name of the CSS class to apply to the caption box
		className: 'caption'
 	});

}
