var flashvars = {};			
		var params = {bgcolor:"#dddddd"};   				
		var attributes = {};
		swfobject.embedSWF("soundPlayer.swf", "mySound", "1", "1", "9.0.28", "expressInstall.swf", false, params, attributes);  		
		$(document).ready (function () {
		var isPlaying = "";		
		$('span.soundButtons').click(function(event){
	
			$('span.soundButtons').css('background', 'url(../img/soundButtons.png) 0px 0px no-repeat');
			var audioSrc = $(this).attr("audioSrc");
			if(isPlaying !== audioSrc){
				var obj = swfobject.getObjectById("mySound");  					
 								obj.soundPlay(audioSrc); 
				$(this).css('background', 'url(../img/soundButtons.png) 0px -20px no-repeat');
				isPlaying = audioSrc;
			} else {
				var obj = swfobject.getObjectById("mySound");  					
 								obj.soundStop();
				isPlaying = "";
			}				 
		});
});	
