function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

var resetit = "";

function moveElement(elementID,final_x,final_y,interval) {
  if (!document.getElementById) return false;
  if (!document.getElementById(elementID)) return false;
  var elem = document.getElementById(elementID);
  if (elem.movement) {
    clearTimeout(elem.movement);
  }
  if (!elem.style.left) {
    elem.style.left = "0px";
  }
  if (!elem.style.top) {
    elem.style.top = "0px";
  }
  var xpos = parseInt(elem.style.left);
  var ypos = parseInt(elem.style.top);
  if (xpos == final_x && ypos == final_y) {
    return true;
  }
  if (xpos < final_x) {
    var dist = Math.ceil((final_x - xpos)/10);
    xpos = xpos + dist;
  }
  if (xpos > final_x) {
    var dist = Math.ceil((xpos - final_x)/10);
    xpos = xpos - dist;
  }
  if (ypos < final_y) {
    var dist = Math.ceil((final_y - ypos)/10);
    ypos = ypos + dist;
  }
  if (ypos > final_y) {
    var dist = Math.ceil((ypos - final_y)/10);
    ypos = ypos - dist;
  }
  elem.style.left = xpos + "px";
  elem.style.top = ypos + "px";
  var repeat = "moveElement('"+elementID+"',"+final_x+","+final_y+","+interval+")";
  elem.movement = setTimeout(repeat,interval);
}

function prepareSlideshow() {
  if (!document.getElementsByTagName) return false;
  if (!document.getElementById) return false;
  var theLists = document.getElementsByTagName("ul");
  for (var j=0; j<theLists.length; j++){
  	if (theLists.className = "navigation") {
  		  var links = document.getElementsByTagName("a");
  		for (var i=0; i<links.length; i++) {
    		theClass = links[i].className;
    		var destination = links[i].getAttribute("href");
    		if (theClass == "active"){
    			if (destination.indexOf("index.asp") != -1) {
      		  moveElement("thePic",0,0,5);
     		 }
     		 if (destination.indexOf("productindex.asp") != -1) {
     		   moveElement("thePic",-741,0,5);
     		 }
     		 if (destination.indexOf("contact.asp") != -1) {
     		   moveElement("thePic",-1482,0,5);
     		 }
     		 if (destination.indexOf("shipping.asp") != -1) {
     		   moveElement("thePic",-2223,0,5);
     		 }
     		 }
    		links[i].onmouseover = function() {
     		 var destination = this.getAttribute("href");
      		if (destination.indexOf("index.asp") != -1) {
      		  moveElement("thePic",0,0,5);
     		 }
     		 if (destination.indexOf("productindex.asp") != -1) {
     		   moveElement("thePic",-741,0,5);
     		 }
     		 if (destination.indexOf("contact.asp") != -1) {
     		   moveElement("thePic",-1482,0,5);
     		 }
     		 if (destination.indexOf("shipping.asp") != -1) {
     		   moveElement("thePic",-2223,0,5);
     		 }
     		}
 		 }
  	}
  }
}

addLoadEvent(prepareSlideshow);