// Begin jQuery spoiler plugin
// Usage: jQuery(".cssClass").spoiler();
jQuery.fn.spoiler = function(options) {
   var backColor = jQuery(this).css("background-color");
   var foreColor = jQuery(this).css("color");

   return jQuery(this)
      .css({backgroundColor:foreColor})
      .mouseover(function() { jQuery(this).css({backgroundColor:backColor}); })
      .mouseout(function() { jQuery(this).css({backgroundColor:foreColor}); })
   ;
};
// End spoiler plugin

jQuery.noConflict();

jQuery(function() {
   jQuery(".spoiler").spoiler();
});