function _$$$(id){ return document.getElementById(id); }
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 = "28px";
  }
  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)/1);
    xpos = xpos + dist;
  }
  if (xpos > final_x) {
    var dist = Math.ceil((xpos - final_x)/1);
    xpos = xpos - dist;
  }
  if (ypos < final_y) {
    var dist = Math.ceil((final_y - ypos)/1);
    ypos = ypos + dist;
  }
  if (ypos > final_y) {
    var dist = Math.ceil((ypos - final_y)/1);
    ypos = ypos - dist;
  }
  elem.style.left = xpos + "px";
  elem.style.top = ypos + "px";
  var repeat = "moveElement('"+elementID+"',"+final_x+","+final_y+","+interval+")";

}
function classNormal(){
 var focusBtnList = _$$$('focus_change_btn').getElementsByTagName('li');
 for(var i=0; i<focusBtnList.length; i++) {
  focusBtnList[i].className='';
 }
}


function focusChange() {
 var focusBtnList = _$$$('focus_change_btn').getElementsByTagName('li');
 
  focusBtnList[0].onmouseover = function() {
	  	
   		moveElement('heying',0,28,100);
  		classNormal()
   		focusBtnList[0].className='current'
		  clearInterval(timerIdentity);
  }
  
  focusBtnList[0].onmouseout=function(){
	  	timerIdentity=setInterval('autoFocusChange()', 5000);
	};
	
	
 focusBtnList[1].onmouseover = function() {
   moveElement('heying',-480,28,100);
   classNormal()
   focusBtnList[1].className='current'
     clearInterval(timerIdentity);
  }
  
  focusBtnList[1].onmouseout=function()
  {
	  timerIdentity=setInterval('autoFocusChange()', 5000);
  };
  
  focusBtnList[2].onmouseover = function() {
	   moveElement('heying',-960,28,100);
	   classNormal()
	   focusBtnList[2].className='current'
	     clearInterval(timerIdentity);
  }
  focusBtnList[2].onmouseout=function()
  {
		timerIdentity=setInterval('autoFocusChange()', 5000);
  };
 focusBtnList[3].onmouseover = function() {
	   moveElement('heying',-1440,28,100);
	   classNormal()
	   focusBtnList[3].className='current'
	     clearInterval(timerIdentity);
  }
	  
 focusBtnList[3].onmouseout=function(){
	  timerIdentity=setInterval('autoFocusChange()', 5000);
   };
	
}



var timerIdentity=setInterval('autoFocusChange()', 5000);
function autoFocusChange() {
 var focusBtnList = _$$$('focus_change_btn').getElementsByTagName('li');
 for(var i=0; i<focusBtnList.length; i++) {
  if (focusBtnList[i].className == 'current') {
   var currentNum = i;
  }
 }
 if (currentNum==0 ){
  moveElement('heying',-480,28,100);
  classNormal()
  focusBtnList[1].className='current'

 }
 if (currentNum==1 ){
  moveElement('heying',-960,28,100);
  classNormal()
  focusBtnList[2].className='current'

 }
 if (currentNum==2 ){
  moveElement('heying',-1440,28,100);
  classNormal()
  focusBtnList[3].className='current'

 }
 if (currentNum==3 ){
  moveElement('heying',0,28,100);
  classNormal()
  focusBtnList[0].className='current'

 }
}

window.onload=function(){
 focusChange();
}
