//<![CDATA[
var myListener1= new Object();

myListener1.onInit = function()
{
	play_footer();
};
 
myListener1.onUpdate = function() {

};

function getFlashObject() {
	return document.getElementById("myFlash");
}
function playSong(mp3ID,url,id) {
	getFlashObject().SetVariable("method:setUrl", url);
	getFlashObject().SetVariable("method:play", "");
	getFlashObject().SetVariable("enabled", "true");
	
	jQuery("#tracks img").remove();
	jQuery('#number' + id).html('<a href="javascript:void(0)" onclick="stopSong(\'' + id + '\')"><img src="images/1325805737_player_stop.jpg" align="absmiddle" border="0"/></a>');
}
function stopSong(id) {
	
	jQuery("#tracks img").remove();
	//jQuery('#number' + id).html(id + '.');
	
	getFlashObject().SetVariable("method:stop", "");
}
function stop_footer() {
	jQuery(".stop_footer").css('display','none');
	jQuery(".start_footer").css('display','block');

	getFlashObject().SetVariable("method:stop", "");
}
function play_footer() {
	getFlashObject().SetVariable("method:setUrl", "matia_mou_ksexnas.mp3");
	getFlashObject().SetVariable("method:play", "");
	getFlashObject().SetVariable("enabled", "true");

	jQuery(".stop_footer").css('display','block');
	jQuery(".start_footer").css('display','none');
}
//]]>
 
 
