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