Тапочек,
<a href=index.htm id='pd'>
<img src="" class="pic"></a>
<script>
const picurls = [{
src: 'http://00.gif?1',
href: 'http://google.com?1'
}, {
src: 'http://01.gif?2',
href: 'http://yahoo.com?2'
}, {
src: 'http://02.gif?3',
href: 'http://yandex.ru?3'
}, {
src: 'http://03.gif?4',
href: 'http://rambler.ru?4'
}];
const now = Date.now(); // мс с 01.01.1970
const msinday = 1000 * 60 * 60 * 24; // мс в сутках
const nowDay = Math.trunc(now / msinday); // дней с 01.01.1970
const ind = nowDay % picurls.length;
const obj = picurls[ind];
document.querySelector(".pic").src = obj.src;
document.querySelector("#pd").href = obj.href;
</script>