//	Ticker

	
var items = new Array();
var links = new Array();

items[0] = "Blogging Gets You Noticed";
links[0] = "<a href='/2009/06/22/blogging-gets-you-noticed/'>";
items[1] = "Now Accepting Applications for Campus Ambassadors";
links[1] = "<a href='/what-we-do/campus-ambassadors/'>";
items[2] = "The Ability Project Launches Tap20";
links[2] = "<a href='/what-we-do/tap-20-career-development-series-for-young-professionals/'>";
items[3] = "Meet the Team";
links[3] = "<a href='/about/'>";

var ctr = 0;   // index pointer of current item
var curr = ""; // current text in ticker

function newsticker() {
    curr = items[ctr];
  	document.getElementById('tickerinner').innerHTML = ""+links[ctr]+""+curr+"</a>";
    if (ctr < items.length-1) {
        ctr++;
    } else {
        ctr = 0;
    }
    setTimeout('newsticker()',5000);
}
	