//var animList = new Array(new Array("spring1","springpromo.php","Spring into a new Job!"),new Array("spring2","springpromo.php","Spring into a new Job!"));
var animList = new Array(new Array("value","employers.php","Value for more than you think!"),new Array("post","stepbystep.php","Post a Job for only $100"));
//var animList = new Array(new Array("survey1","survey/survey.php","Retired Worker Survey - Click here to participate"),new Array("survey2","survey/survey.php","Retired Worker Survey - Click here to participate"),new Array("survey3","survey/survey.php","Retired Worker Survey - Click here to participate"));
//var animList = new Array(new Array("fall1","fallpromo.php","Harvest Experience"),new Array("fall2","fallpromo.php","Harvest Experience"));
var currAnim = 0;
var isEnabled = true;

function animate(){
	isEnabled = true;
	document.callimg.src= "images/call_"+animList[currAnim][0]+".gif";
	document.callimg.alt = animList[currAnim][2];
	setTimeout("nextAnimate()",2500);	
}

function nextAnimate(){	
  currAnim++;
  if(currAnim>=animList.length){
  	currAnim = 0;
  	document.callimg.src = "images/call_blank.gif";
	  document.callimg.alt = "";	  	
    setTimeout("animate()",500);
  }else{
	  setTimeout("animate()",500);
  }
}

function animLink(){
	if(!isEnabled){
		return;
	}
	document.location = animList[currAnim][1];
}