var timeoutcmd;	
var tickertimeout;	
var rsstitle=new Array();
var rsslink=new Array();
var bgcolor;
var textcolor;

//rsstitle[0]='Titel';
//rsslink[0]='Link';

						rsstitle[0]='Mario &amp; Sonic bei den Olympischen Spielen London 2012 - Screenshots: Mario wird handgreiflich';
						rsslink[0]='http://www.nintendofront.de/news-3412-14878.html';
						
						rsstitle[1]='NintendoFRONT - Alle neuen Tipps, Tricks und Cheats auf einen Blick!';
						rsslink[1]='http://www.nintendofront.de/news-53-14877.html';
						
						rsstitle[2]='Theatrhythm Final Fantasy - Video: Weitere Eindrücke aus der zweiten Demo';
						rsslink[2]='http://www.nintendofront.de/news-3479-14876.html';
						
						rsstitle[3]='Sakura Samurai: Art of the Sword - Offscreen-Video zeigt spannenden Bosskampf';
						rsslink[3]='http://www.nintendofront.de/news-3581-14875.html';
						
						rsstitle[4]='Xenoblade Chronicles - US-Termin steht endlich fest';
						rsslink[4]='http://www.nintendofront.de/news-2845-14874.html';
						
						rsstitle[5]='Electronic Arts (EA) - Grafik offenbart aktualisierte Pal-Termine';
						rsslink[5]='http://www.nintendofront.de/news-60-14873.html';
						
						rsstitle[6]='Konami - Konnte einen sehr hohen Gewinn verbuchen';
						rsslink[6]='http://www.nintendofront.de/news-111-14872.html';
						
						rsstitle[7]='Metro: Last Light - Verschoben: Der Titel erscheint nun erst 2013';
						rsslink[7]='http://www.nintendofront.de/news-3449-14871.html';
						
						rsstitle[8]='Nintendo 3DS - Video: So kommt ihr schnell und einfach ins Internet';
						rsslink[8]='http://www.nintendofront.de/news-2818-14870.html';
						
						rsstitle[9]='eShop - Video zu den Downloads dieser Woche';
						rsslink[9]='http://www.nintendofront.de/news-3434-14869.html';
						
						rsstitle[10]='Inazuma Eleven Go - Video: Viel mehr als nur ein Fußball-Spiel';
						rsslink[10]='http://www.nintendofront.de/news-3488-14868.html';
						
						rsstitle[11]='Mario &amp; Sonic bei den Olympischen Spielen London 2012 - Screenshots: Handball-Action mit Wario &amp; Co';
						rsslink[11]='http://www.nintendofront.de/news-3412-14867.html';
						
						rsstitle[12]='Love Plus - Ausführlicher Gameplay-Trailer zur Liebes-Simulation';
						rsslink[12]='http://www.nintendofront.de/news-3408-14866.html';
						
						rsstitle[13]='The Last Story - Nach dem Trailer folgen Bilder';
						rsslink[13]='http://www.nintendofront.de/news-3041-14865.html';
						
						rsstitle[14]='THQ - Restrukturierung fordert weitere Entlassungen';
						rsslink[14]='http://www.nintendofront.de/news-56-14864.html';
						
					

var col=new Array();
//#ffffff -> #000000! ff
col[0]='#ffffff';
//col[1]='#efefef';
//col[2]='#dfdfdf';
//col[3]='#cfcfcf';
//col[4]='#bfbfbf';
//col[5]='#afafaf';
//col[6]='#9f9f9f';
//col[7]='#8f8f8f';
//col[8]='#7f7f7f';
//col[9]='#6f6f6f';
//col[10]='#5f5f5f';
//col[11]='#4f4f4f';
//col[12]='#3f3f3f';
//col[13]='#2f2f2f';
//col[14]='#1f1f1f';
//col[15]='#0f0f0f';


function disp_rss_obj(objnum,id,delay,mytextcolor,mybgcolor)
	{ 
	bgcolor = mybgcolor ? mybgcolor : '';
	textcolor = mytextcolor ? mytextcolor : '';
	col[0]=textcolor;

	useobj=rsslink[objnum]?objnum:0;
	mytarget=document.getElementById(id);
	mytarget.style.backgroundColor=bgcolor;
	mytarget.innerHTML=('<a id="'+id+'inner" href="'+rsslink[useobj]+'" target="_blank">'+rsstitle[useobj]+'</a><br>');
	mytarget=document.getElementById(id+"inner");
	mytarget.style.color=col[0];
	setTimeout("rss_recolor(0,'"+id+"',"+useobj+","+delay+",textcolor, bgcolor)",50);
	}

	
function rss_recolor(colnum,id,objnum,delay,mytextcolor,mybgcolor)
	{
	bgcolor = mybgcolor ? mybgcolor : '';
	textcolor = mytextcolor ? mytextcolor : '';
	mytarget=document.getElementById(id+"inner");
	mytarget.style.color=col[colnum];
	if(col[colnum+1])
		{ setTimeout("rss_recolor("+(colnum+1)+",'"+id+"',"+objnum+","+delay+",textcolor,bgcolor)",50); }
		else
		{ setTimeout("disp_rss_obj("+(objnum+1)+",'"+id+"',"+delay+",textcolor,bgcolor)",delay*1000); }	
	}
