(function(){
// List of button block IDs
var buttonIds = [
'block-yui_3_17_2_1_1752900027713_20928',
'block-yui_3_17_2_1_1753204829915_16610',
'block-6ce6420ad26e1a658cc5',
'block-22ece590ad765014707b',
'block-954bc9382fb368a37010',
'block-a07e93d1efb30ece1397',
'block-d55f9dc003b8934a7649',
'block-yui_3_17_2_1_1754446888550_22358',
'block-44c5cda8221646127432'
];
var qs = window.location.search || '';
var newHref = window.location.pathname + qs + '#start';
// Loop through all button IDs and update their anchor href
buttonIds.forEach(function(id) {
var block = document.getElementById(id);
if (!block) return;
// Try to find an tag inside the block
var anchor = block.querySelector('a');
if (anchor) {
anchor.setAttribute('href', newHref);
}
});
})();