$(document).ready(function(){
                             $(document).pngFix();
                             
                             $("a[href$='mp3']").each(function(){
                                                               href = $(this).attr('href');
                                                               id = $(this).attr('id');
                                                               $(this).removeAttr('href');
                                                               $(this).append('<span><a href="'+href+'" id="'+id+'Play"><img src="slike/'+id+'.png" border="0" /></a></span>')
                                                               });
                             
                             $("a[href$='mp3']").bind('mouseover',function(){                                                                                
                                                          href = $(this).attr('href');
                                                          id = $(this).attr('id');
                                                          $("body").append('<embed id="'+id+'Embed" src="'+href+'" autostart="true" hidden="true"></embed>');
                                                          return false;
                                                          });
                                                    
                        
                                                    
                           });

function stopPlaying() {
								 
$('#parkPlayEmbed').remove();
$('#centerPlayEmbed').remove();
$('#rotovzPlayEmbed').remove();
$('#zeleznicaPlayEmbed').remove();
$('#industrijaPlayEmbed').remove();
								 
}