// Begin jQuery hovercolor plugin
// Usage: jQuery(".hovercolor").hovercolor();
jQuery.fn.hovercolor = function(options) {
   var inColor = "red";
   if (jQuery(this).attr("hovercolor")) { inColor = jQuery(this).attr("hovercolor"); }

   var outColor = jQuery(this).css("color");

   return jQuery(this)
      .each(function() { jQuery(this).animate({ color:inColor }).animate({ color:outColor });  })
      .mouseover(function() { jQuery(this).animate({ color:inColor }); })
      .mouseout(function() { jQuery(this).animate({ color:outColor }); })
      .css({ cursor:"default" })
   ;
};
// End hovercolor plugin

jQuery.noConflict();

jQuery(function() {
   jQuery("[hovercolor]").hovercolor();
});