// File: readXML.js

// Start function when DOM has completely loaded 
$(document).ready(function(){
    getdata()
});
	
function getdata_old() {
    nocache = Math.random(); // variable to alter the url so IE won't cache the data
    $("div#ContentArea").load("NowPlaying2.asp" + "?nocahe=" + nocache)
    T = setTimeout("getdata()","10000");
}

function getdata() {
	nocache = Math.random(); // variable to alter the url so IE won't cache the data
	$("div#ContentArea").load("/Playlist/Mini2/NowPlaying2010.aspx" + "?nocahe=" + nocache)
	T = setTimeout("getdata()", "10000");
}
 
 
