
jQuery.fn.initSpoilers=function(props){props=jQuery.extend({revealedClass:'reveal'},props?props:{});this.hover(function(){$(this).addClass(props.revealedClass);},function(){$(this).removeClass(props.revealedClass);});return this;};