//	Ticker

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

items[0] = "We got 3 in the top 10!";
links[0] = "<a ='/'>";
items[1] = "Tyga Record Release Party Los Angeles!";
links[1] = "<a href='/fine-art/hecox/'>";
items[2] = "DJ Skribble on the Charts? Yessir!";
links[2] = "<a href='/accessories/csc_mug.php'>";
items[3] = "I Can't Escape The Moodswing Roster";
links[3] = "<a href='/subscribe'>";
items[4] = "Skribble Total Club Hits Out Now!";
links[4] = "<a href='/printed-matter/prints/'>";
items[5] = "You Can Hear My Voice Everywhere!";
links[5] = "<a href='http://intelligence.arkitip.com/'>";
items[6] = "DJ Chachi at Lincoln Center";
links[6] = "<a href='/garments/parra_tee.php'>";
items[7] = "Come Sing Happy Birthday to Shwayze";
links[7] = "<a href='/printed-matter/books/nowyouknow.php'>";
items[8] = "Pimp Ninja Pimps Out Usher";
links[8] = "<a href='/magazines/issue46.php'>";
items[9] = "Ditch Fridays with DJ Skribble";
links[9] = "<a href='/magazines/issue44.php'>";

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()',6500);
}
	

