diff --git a/airtime_mvc/public/js/airtime/dashboard/helperfunctions.js b/airtime_mvc/public/js/airtime/dashboard/helperfunctions.js
index 818aef04d..87a50796f 100644
--- a/airtime_mvc/public/js/airtime/dashboard/helperfunctions.js
+++ b/airtime_mvc/public/js/airtime/dashboard/helperfunctions.js
@@ -179,36 +179,6 @@ function getFileExt(filename){
return filename.split('.').pop();
}
-function audioStream(){
-
- if ($("#jquery_jplayer_1").data("jPlayer") && $("#jquery_jplayer_1").data("jPlayer").status.paused != true){
- $('#jquery_jplayer_1').jPlayer('clearMedia');
- $('#jquery_jplayer_1').jPlayer('destroy');
- return;
- }
-
- var uri = "http://localhost:8000/airtime_128.ogg";
- var ext = getFileExt(uri);
-
- var media;
- var supplied;
- if (ext == "ogg"){
- media = {oga:uri};
- supplied = "oga";
- } else {
- media = {mp3:uri};
- supplied = "mp3";
- }
-
- $("#jquery_jplayer_1").jPlayer({
- ready: function () {
- $(this).jPlayer("setMedia", media).jPlayer("play");
- },
- swfPath: "/js/jplayer",
- supplied: supplied
- });
-}
-
function resizeImg(ele, targetWidth, targetHeight){
var img = $(ele);