SPICEWORKS.plugin.add(     { name:"Orange Links", version:"0.2", description:"Change the background color of all links to orange on hover", guid:"p-9a90de70-99a7-012b-48ac-0016355a8e86-1227237378", settings:{}, contentAreas: [{"content_type":"text/javascript","updated_at":"2010/01/04 12:38:16 +0000","id":10,"description":null,"content_name":"initialize.js","user_id":null}], initialize:function(plugin){ // ==SPICEWORKS-PLUGIN==
// @name          Orange Links
// @description   Change the background color of all links to orange on hover
// @version       0.2
// ==/SPICEWORKS-PLUGIN==  

// Only works in Firefox so far... Expect a future version to support IE

$$('head').first().insert('<style type="text/css"> a.hover_orange{ background:#fe5200!important; color:#fff!important; } </style>');

// See http://prototypejs.org/api for documentation on how to use the Prototype library.
$$('a').each(function(elem){
  elem.observe('mouseover', function(event){
    event.findElement('a').addClassName('hover_orange');
  });
  elem.observe('mouseout', function(event){
    event.findElement('a').removeClassName('hover_orange');
  });
});


      }
    }
 );
