 function resize() {
    var width = (window.innerWidth ? window.innerWidth : (document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.offsetWidth))
    var el = document.getElementById('h')
    if (width <= 1290)
        el.className = 'smallH'
     
    else
        el.className = 'bigH'
    }

