function playTs() {
	var vlc = document.getElementById("vlc");
	vlc.playlist.add('udp://@:5004');
	vlc.playlist.play();
}
		

function loadVlcPlugin() {
	var vlcEmbed='<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2" width="506" height="306" id="vlc"></embed>';
	document.getElementById('vlcContainer').innerHTML=vlcEmbed;
}

function windowStatus() {
	window.status='Im in yr news, readin yr subtitlez';
}

//setTimeout(loadVlcPlugin, 1);

//setTimeout(playTs, 1000);

setTimeout(windowStatus, 2000);


function subtitles_reload(text) {
	document.getElementById('subtitlesText').innerHTML = text;
}

function news_reload(text) {
	s = document.createElement('script');
	s.src = 'rss/news.js.php?text=' + escape(text);
	document.getElementsByTagName('head')[0].appendChild(s);
}

function flickr_reload(text) {
	s = document.createElement('script');
	s.src = 'flickr.js.php?text=' + escape(text);
	document.getElementsByTagName('head')[0].appendChild(s);
}

function lolspeak_reload(text) {
	s = document.createElement('script');
	s.src = 'lolsentence.js.php?t='+Math.random();
	document.getElementsByTagName('head')[0].appendChild(s);
}


/*function flickr_check() {
	s = document.createElement('script');
	s.src = '/flickr_keywords.js.php';
	document.getElementsByTagName('head')[0].appendChild(s);
	
	setTimeout(flickr_check, 10000);
}*/

