function hoverDivOnMouseOver(){
this.oldClassName=this.className;
this.className+=" divHilite";
};
function hoverDivOnMouseOut(){
this.className=this.oldClassName;
};
function hoverRowOnMouseOver(){
this.className="hoverRow rowHilite";
node=this;
do{
node=node.nextSibling;
}while(node&&"TR"!=node.nodeName);
if(node&&"hoverPartnerRow"==node.className.substring(0,15)){
node.className="hoverPartnerRow rowHilite";
}
};
function hoverRowOnMouseOut(){
this.className="hoverRow";
node=this;
do{
node=node.nextSibling;
}while(node&&"TR"!=node.nodeName);
if(node&&"hoverPartnerRow"==node.className.substring(0,15)){
node.className="hoverPartnerRow";
}
};
function hoverPartnerRowOnMouseOver(){
this.className="hoverPartnerRow rowHilite";
node=this;
do{
node=node.previousSibling;
}while(node&&"TR"!=node.nodeName);
if(node&&"hoverRow"==node.className.substring(0,8)){
node.className="hoverRow rowHilite";
}
};
function hoverPartnerRowOnMouseOut(){
this.className="hoverPartnerRow";
node=this;
do{
node=node.previousSibling;
}while(node&&"TR"!=node.nodeName);
if(node&&"hoverRow"==node.className.substring(0,8)){
node.className="hoverRow";
}
};
function hoverRowsInit(){
var _1=document.getElementsByTagName("tr");
for(var i=0;i<_1.length;i++){
if("hoverRow"!=_1[i].className.substr(0,8)&&"hoverPartnerRow"!=_1[i].className.substr(0,15)){
continue;
}
if("hoverRow"==_1[i].className.substr(0,8)){
_1[i].onmouseover=hoverRowOnMouseOver;
_1[i].onmouseout=hoverRowOnMouseOut;
}else{
if("hoverPartnerRow"==_1[i].className.substr(0,15)){
_1[i].onmouseover=hoverPartnerRowOnMouseOver;
_1[i].onmouseout=hoverPartnerRowOnMouseOut;
}
}
}
if(window.XMLHttpRequest){
var _3=document.getElementsByTagName("div");
for(var i=0;i<_3.length;i++){
if("buchneu"!=_3[i].className.substr(0,7)&&"buch_schriftenreihe"!=_3[i].className.substr(0,19)&&"buch_technothek"!=_3[i].className.substr(0,15)){
continue;
}
_3[i].onmouseover=hoverDivOnMouseOver;
_3[i].onmouseout=hoverDivOnMouseOut;
}
}
};

