/* kk_js.js */

/* Javascript-Befehle für die Kriegskind-Website             */
// ************************************************************
// Projektname: kk = Kriegskind
// ************************************************************
//
// Hosenfeld Consulting http://www.ho-con.de/
// Friedel Hosenfeld -- fh@ho-con.de
//
//
// fh, 15-JUN-2007.


// Funktionen:
//  - fun_hover(strBildID,strBildSource)
//
// lr: fh, 15-JUN-2007.
// lr: fh, 28-DEC-2007, Erweiterung um strGHauptV.


function fun_hover(strBildID,strBildSource,strGHauptV)
{
  // Wechselt beim das Bild mit der ID strBildID auf übergebene Source-Datei.
  // In strGHauptV steht evtl. der relative Pfad zum Hauptverzeichnis (../).
  // 
  // fh, 15-JUN-2007.
  // lr: fh, 28-DEC-2007, strGHauptV.
  
  
  document.getElementById(strBildID).src=strGHauptV + "img/" + strBildSource + ".gif";
  return true;
} // Ende fun_hover

// ----------------------------------------

