$(document).ready(function() {
	$("#vic_radio_player").jPlayer({
		ready: function () {
			$(this).jPlayer("setMedia", {
				mp3: "http://www.live365.com/play/326059?sid=209.201.113.2-1304054501142&lid=&from=pls"
			}).jPlayer("pause");
		},
		swfPath: "/js/init",
		supplied: "mp3",
		oggSupport: false,
		solution: "html, flash",
		volume: 0.8
		
	})
	
	$("#vic_radio_player").bind($.jPlayer.event.canplay, function(event) {
		canPlay();
	})
	
	$("#vic_radio_player").bind($.jPlayer.event.playing, function(event) {
		liveStream();
	})
	
	$("#vic_radio_player").bind($.jPlayer.event.pause, function(event) {
		stopStream();
		resetStream();	
	});
	
});
