window.addEvent('load',function(){
var rollinappendage = '-O';
// jay johnston mootool auto-rollover for all classes called "over"
$$('.over').forEach(function(item,i) {
  // preload it!
  var newsrc = item.getProperty('src').substr(0,item.getProperty('src').indexOf('.jpg'))+rollinappendage+'.jpg';
  var preload = new Image(); preload.src=newsrc; 
  // sweet!  if the title doesn't exist, doulbe the alt :)
  // switch it to -o
  item.addEvent('mouseover',function() {
    var newsrc = item.getProperty('src').substr(0,item.getProperty('src').indexOf('.jpg'))+rollinappendage+'.jpg';
    if (newsrc!=rollinappendage+'.jpg') item.setProperty('src',newsrc); 
  });
  // switch it back to (not) -o
  item.addEvent('mouseout',function() {
    var newsrc = item.getProperty('src').substr(0,item.getProperty('src').indexOf(rollinappendage))+'.jpg';;
    if (newsrc!='.jpg') item.setProperty('src',newsrc);
  });
});
$$('img').forEach(function(item,i) {
  item.setProperty('title',item.getProperty('alt'));
});
});


/* the following is NOT part of dw_preload and ONLY part of humancapitalgroupinc */
function BioPopUp(URL) {
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=580,height=400');");
}
function VideoPopUp(URL) {
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=300,height=230');");
}
// En
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
