function playMusic(note){
var thissound=document.getElementById("playdddo");
thissound.src="../atelier_"+note+"5.mid";
thissound.volume="60";
thissound.Play();
}



function retireFlash(){
	$('#imagedetete').html('<div style="display:none"></div><div id="do" class="note"></div><div id="re" class="note"></div>');
$('.note').mouseenter(function(){playMusic($(this).attr('id'));});

}
$(document).ready(function() {
	// masque le flash
	setTimeout('retireFlash()',2000);


	});
