$(document).ready(function() {
	var refreshId = setInterval(function() {
		$("#stream_title").load('now_playing.php');
	}, 10000);
  	$('.radio-popup').popupWindow({ 
		height:250, 
		width:250, 
		top:50, 
		right:50 
	}); 
	$("#now-playing").live('click',function(){
		$("#radio-buttons").toggle();
		return false;
	});
});

