﻿ function applesToSites(){
 var txtApple = document.getElementById('prestart').innerHTML;
 var txtSite = txtApple.replace(/яблоки/gi,'<span class="big">сайты</span>');
 txtSite = txtSite.replace(/яблока/gi,'<span class="big">сайта</span>');
 document.getElementById('prestart').innerHTML = txtSite;
 }