London Chow’s golden summer got a bit brighter Sunday when she and partner Sara Hughes captured the gold medal at the AAU Best of the Beach tournament held last weekend in Hermosa Beach. The win marked Chow’s sixth beach volleyball title this season, each with a different partner which is all part of the grand scheme of things.
= new YT.Player(pid, {
events: {
'onReady': function(e){
e.target.mute();
e.target.playVideo();
}
}
});
// Mute / Unmute Logic
jQuery('.alco-yt-mute-btn[data-yt-id="alco_yt_340084"]').on('click', function(){
var player = window.alcoYTPlayers[pid];
if (!player) return;
try {
var isMuted = player.isMuted();
if (isMuted) {
player.unMute();
jQuery(this).text('🔊');
} else {
player.mute();
jQuery(this).text('🔇');
}
} catch(err){}
});
// Click on video → Learn More
jQuery('#alco_yt_340084').on('click', function(){
var link = jQuery('.alco-learn-more[data-ad-id="340084"]').attr('href');
if(link){
window.open(link, '_blank');
}
});
}
alcoInitYT_340084();