var currentsong='';
function playSong(path,xxx) {

	if(currentsong!=xxx){
			flash.playSong(path);
			currentsong=xxx;
			 $(".isPlaying").each(function () {
					$(this).removeClass('isPlaying');
					$(this).addClass('isStopped');
			  });
			 $(xxx).removeClass('isStopped');
			 $(xxx).addClass('isPlaying');
	 
	}else{
			currentsong="";
		  flash.stopSong();
		 $(".isPlaying").each(function () {
				$(this).removeClass('isPlaying');
				$(this).addClass('isStopped');
		  });
		
	}
	
}

function thisMovie(movieName) {
        var isIE = navigator.appName.indexOf("Microsoft") != -1;
        return (isIE) ? window[movieName] : document[movieName];
}

window.onload = function() {
  if(navigator.appName.indexOf("Microsoft") != -1) {
    flash = window.songPlayer;
  }else {
    flash = window.document.songPlayer;
  }
 
}
