//	Ticker

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

items[0] = "Come for a visit... Project Space";
links[0] = "<a href='http://arkitip.com/project-space/'>";
items[1] = "Laptop sleeves, iPhone slider cases = Curated by Arkitip";
links[1] = "<a href='/curated/'>";
items[2] = "The Evan Hecox Print Collection";
links[2] = "<a href='/printed-matter/hecox/'>";
items[3] = "Keep informed, join the Arkitip Elist";
links[3] = "<a href='/elist'>";
items[4] = "Order a framed print from our catalog today";
links[4] = "<a href='/printed-matter/prints/'>";
items[5] = "Be a Benefactor, join our exclusive membership";
links[5] = "<a href='/benefactor/'>";
items[6] = "The Arkitip Intel... Daily Intelligence from a Worldwide Network of Reporters";
links[6] = "<a href='http://arkitipintel.com/'>";
items[7] = "Peter Sutherland, Kevin Lyons, Tony Arcabascio books available";
links[7] = "<a href='/printed-matter/books/'>";
items[8] = "Selected collectors copies available";
links[8] = "<a href='/magazines/'>";

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);
}
	
