// script code
document.addEventListener("DOMContentLoaded", function() { 
    //замена иконки в меню
var myImg = document.querySelector("img.menu-item-icon");
    if(myImg.src == 'https://academy.inholist.com/public/img/default_profile_50.png') {
  		myImg.src = 'https://fs.getcourse.ru/fileservice/file/download/a/566470/sc/85/h/83482b0be0988a14edca4eb046302292.png';
	}

    //замена иконки в других местах  
    var myImg2 = document.querySelector("img.user-profile-image");
    if(myImg2.src == 'https://academy.inholist.com/public/img/default_profile_50.png') {
  		myImg2.src = 'https://fs.getcourse.ru/fileservice/file/download/a/566470/sc/233/h/b1cc8ee1f767b0a203aee61529f8432b.svg';
	}
    var myImg3 = document.querySelector("img.user-profile-image.user-default-profile-image");
    if(myImg3.src == 'https://academy.inholist.com/public/img/default_profile_50.png') {
  		myImg3.src = 'https://fs.getcourse.ru/fileservice/file/download/a/566470/sc/233/h/b1cc8ee1f767b0a203aee61529f8432b.svg';
	}
    
    //замена иконки бургера
    var myMenuIcon = document.querySelector("#gcAccountUserMenu > div.gc-account-leftbar > a > img");
    myMenuIcon.src = 'https://fs.getcourse.ru/fileservice/file/download/a/566470/sc/391/h/c46322a241f9467395258447f1c62989.svg';
  
});