$(document).ready(function(){
        
        $.ajax({
	    dataType: "json", 
	    url: 'http://www.rewind949.com/Playlist/CurrentSong',
	    success: function(data) {
            $('#Stream_Pad_artist').text();
			$('#Stream_Pad_artist').append("<div id='pad_data'>"+data.now.artist +" \""+data.now.song+"\"</div>");
			$('#Stream_Pad_artist').fadeIn();
			$('#Stream_Pad_artist').marquee();
	    }   
	   });

});

