(function() {
	
var toggleImg = function(e) {   
  //if (excludeBtn && this.id != excludeBtn) {
  if (excludeBtn && !in_array(this.id, excludeBtn)) {
    var str_length = Number(this.src.length);
    var str_ident  = this.src.substring((str_length-6), str_length);
    if (str_ident == '_a.gif') {
      this.src = this.src.replace(/_a.gif/g, ".gif");
    } else {
      this.src = this.src.replace(/.gif/g, "_a.gif");
    }
  }
}

YAHOO.util.Event.addListener(['home', 'unternehmen', 'produkte', 'dienstleistungen', 'infrastruktur', 'kontakt', 'information'], 'mouseover', toggleImg);
YAHOO.util.Event.addListener(['home', 'unternehmen', 'produkte', 'dienstleistungen', 'infrastruktur', 'kontakt', 'information'], 'mouseout', toggleImg);

})();

// small helper
function in_array(item,arr) {
  for(p=0;p<arr.length;p++) if (item == arr[p]) return true;
  return false;
}