
<!-- Begin
var hoverstep  = 1;
var hoverdelay  = 30;
var hoverheight  = 0;
var Hoffset = 0;
var Woffset = 0;
var yon = 0;
var xon = 0;
var hoverpause  = false;
var hoverinterval;
var hovername = navigator.appName;
if(hovername == "Microsoft Internet Explorer") hovername = true;
else hovername = false;
var xPos = 20;
if(hovername) var yPos = document.body.clientHeight;
else var yPos = window.innerHeight;
function changePos() {
if(hovername) {
hoverwidth = document.body.clientWidth;
hoverheight  = document.body.clientHeight;
Hoffset = img.offsetHeight;
Woffset = img.offsetWidth;
img.style.left = xPos + document.body.scrollLeft;
img.style.top = yPos + document.body.scrollTop;
}
else {
hoverheight  = window.innerHeight;
hoverwidth = window.innerWidth;
Hoffset = document.img.clip.hoverheight ;
Woffset = document.img.clip.hoverwidth;
document.img.pageY = yPos + window.pageYOffset;
document.img.pageX = xPos + window.pageXOffset;
}
if (yon) {
yPos = yPos + hoverstep ;
}
else {
yPos = yPos - hoverstep ;
}
if (yPos < 0) {
yon = 1;
yPos = 0;
}
if (yPos >= (hoverheight  - Hoffset)) {
yon = 0;
yPos = (hoverheight  - Hoffset);
}
if (xon) {
xPos = xPos + hoverstep ;
}
else {
xPos = xPos - hoverstep ;
}
if (xPos < 0) {
xon = 1;
xPos = 0;
}
if (xPos >= (hoverwidth - Woffset)) {
xon = 0;
xPos = (hoverwidth - Woffset);
   }
}
function start() {
if(hovername) img.visibility = "visible";
else document.img.visibility = "visible";
hoverinterval = setInterval('changePos()',hoverdelay );
}
function pauseResume() {
if(hoverpause ) {
clearInterval(hoverinterval);
hoverpause  = false;
}
else {
hoverinterval = setInterval('changePos()',hoverdelay );
hoverpause  = true;
   }
}
start();
//  End -->
