$(document).ready(function(){
    $("#jquery_jplayer").jPlayer({
        ready: function () {
            $("#jquery_jplayer")
                .onProgressChange(function (loadPercent, playedPercentRelative, playedPercentAbsolute, playedTime, totalTime) {})
                .onSoundComplete(function () {});
            $("#sound-link")
                .mouseenter(function () {
                    var voices = ["alex", "bruce", "fred", "kathy", "vicki", "victoria"];
                    var voice = voices[Math.floor(Math.random() * voices.length)];
                    var sound_file = "/_media/snd/" + voice + ".mp3";
                    $("#jquery_jplayer").setFile(sound_file).play();
                })
                .mouseleave(function () {
                    // $("#jquery_jplayer").stop();
                });
        },
        swfPath: "/_media/js",
        oggSupport: false
    });
});
