/**
 * @author ftuerk
 */

function init_stream_all(root){
sndReq(root+'CurrentTrack_DELUXE_MUSIC.html', '#livestream_1_content');
sndReq(root+'CurrentTrack_DELUXE_RADIO.html', '#livestream_2_content');
sndReq(root+'CurrentTrack_DELUXE_LOUNGE_RADIO.html', '#livestream_3_content');

}



function sndReq(file, id){
	
    $.ajaxSetup({
	    scriptCharset : 'utf-8'
	});
	
	$(id).load(file);
	
	window.setTimeout("sndReq('"+file+"','"+id+"')", 30000);
	
}

function sponsor_msg(file, id, msg){
	
	$(id).load(msg);
	
		
	window.setTimeout("sndReq('"+file+"','"+id+"')", 18000);
}