/* Not doing this either 
// Register window.onLoad event 
Event.observe(window, 'load', function() { 
  // Find all main content form elements of class "required" ...
  $$('#mainContent form .required').each(function(l) {
    // ... and color them blue!
    l.style.color='blue';
  });
});
*/

/* Not doing this for now
// Register window.onLoad event 
Event.observe(window, 'load', function() { 
  // Find all absolute URLs and style them (or, better, assign a class to them)
  var absolute_url_pages = $$('a[href^="http:"]');  
  absolute_url_pages.each(function(a) {
    a.style.color='red';
  });

  // Find all LOCAL absolute URLs and unstyle them (or, better, remove the class just assigned to them)
  var local_absolute_url_pages = [];
  local_absolute_url_pages = local_absolute_url_pages.concat($$('a[href^="http://www.mtholyoke.edu"]'));
  local_absolute_url_pages = local_absolute_url_pages.concat($$('a[href^="http://www/"]'));
  local_absolute_url_pages = local_absolute_url_pages.concat($$('a[href^="http://webdev.mtholyoke.edu"]'));
  local_absolute_url_pages = local_absolute_url_pages.concat($$('a[href^="http://webdev/"]'));
  local_absolute_url_pages = local_absolute_url_pages.concat($$('a[href^="http://red.mtholyoke.edu"]'));
  local_absolute_url_pages = local_absolute_url_pages.concat($$('a[href^="http://red/"]'));
  local_absolute_url_pages = local_absolute_url_pages.concat($$('a[href^="http://flock.mtholyoke.edu"]'));
  local_absolute_url_pages = local_absolute_url_pages.concat($$('a[href^="http://flock/"]'));

  local_absolute_url_pages.each(function(a) {
    a.style.color='green';
  });

});
*/