function myPlayToggle(button_id){
	if("playing" == niftyplayer('niftyPlayer1').getState() || "loading" == niftyplayer('niftyPlayer1').getState()){
		$("#"+button_id).attr("src", __base_url + "themes/" + __theme + "/images/zene_off.jpg");
		niftyplayer('niftyPlayer1').pause();
	}
	else{
		$("#"+button_id).attr("src", __base_url + "themes/" + __theme + "/images/zene_on.jpg");
		niftyplayer('niftyPlayer1').play();
	}
}
