startList = function() {

if (/*@cc_on!@*/0 && document.getElementById("nav")) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
  node = navRoot.childNodes[i];
  if (node.nodeName=="LI") {
  node.onmouseover=function() {
  this.className+=" over";
    }
  node.onmouseout=function() {
  this.className=this.className.replace
      (" over", "");
   }
   }
  }
}
 
var i,l=document.getElementsByTagName('a')
for(i=0;i<l.length;i++)
{
	l[i].onfocus=function(){this.blur()}
	if (l[i].parentNode.className=="book-prps" && l[i].parentNode.style.backgroundImage != "") {
	if (l[i].className=="audio-detail" || l[i].className=="detail-audio"){
		l[i].onmouseover=l[i].onmouseout=function(){
			var p = this.parentNode;
			var pp = p.parentNode;
			var swp = pp.style.backgroundImage;
			pp.style.backgroundImage=p.style.backgroundImage;
			p.style.backgroundImage=swp;
		  }
		}
	}
}
 
}
window.onload=startList;