
if (document.images) {
 img_on =new Image();  img_on.src ="/bookstand/images/newlevo2.jpg"; 
 img_off=new Image();  img_off.src="/bookstand/images/newlevo1.jpg"; 
}

function handleOver() { 
 if (document.images) document.imgName.src=img_on.src;
}

function handleOut() {
 if (document.images) document.imgName.src=img_off.src;
}


