How to add a few play buttons with currentTime

I have a simple html5 audio player. I want to add a few buttons or links so when I click on some button, audio will start from some time…

<audio id="audio" preload="auto" tabindex="0" controls="" type="audio/mpeg">
    <source type="audio/mp3" src="http://www.archive.org/download/bolero_69/Bolero.mp3">
</audio>

<a href="#" id="button-1">02:32</a>
<a href="#" id="button-2">04:18</a>
<a href="#" id="button-3">06:43</a>
<a href="#" id="button-4">07:15</a>

You can put an onclick event on your buttons to pass through the timestamp and execute some code similar to this…

var audioElement = document.getElementById('audio');

audioElement.currentTime = 152; //integer value for time in seconds
audioElement.play(); 

references