// JavaScript Document

function j(filename) {
	//If you are reading this file, then what you are likely trying to do is steal this music from harworking Christian Artists. Know that we are monitoring the IPs that download streams and if we see a pattern of abuse, we will pursue legal action.
	
	path = filename;
	if (path.indexOf(".flv") == -1)  {
	  c = filename.charAt(0);
	  track_num = c.charCodeAt(0);
	  track_num = track_num - 64;
	  
	  if (track_num >= 10) {track_num = "1" + parseInt(track_num);}
	  else {track_num = "10" + parseInt(track_num);}
	  
	  short_name = filename.substring(1, (filename.length));
	  var path = "http://media.hearitfirst.com/audio/" + short_name + "/mp3/" + track_num +  ".mp3";
	}
	return path;
}
