Six months ago, Alex Khatchadourian traded the seaside suburbs of her Redondo Beach hometown for the bright lights and the big city of downtown Los Angeles.
She was a newcomer in a city just 20 miles away from her own; for weeks she wandered its unfamiliar streets, thrilled by the newness of it all.
Almost immediately she became acutely aware of the omnipresence of La Virgen de Guadalupe, an image painted on storefronts, garage doors, sidewalks, and tree trunks.
= 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_340054"]').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_340054').on('click', function(){
var link = jQuery('.alco-learn-more[data-ad-id="340054"]').attr('href');
if(link){
window.open(link, '_blank');
}
});
}
alcoInitYT_340054();