window.onload = resize;
window.onresize = resize;
        
    function resize()
        {
            var myWidth = 0, myHeight = 0;
    
            if( typeof( window.innerWidth ) == 'number' ) {
                //Non-IE
                myWidth = window.innerWidth;
                myHeight = window.innerHeight;
            } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
                //IE 6+ in 'standards compliant mode'
                myWidth = document.documentElement.clientWidth;
                myHeight = document.documentElement.clientHeight;
            } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
                //IE 4 compatible
                myWidth = document.body.clientWidth;
                myHeight = document.body.clientHeight;
            }
                        
            var navElement = document.getElementById("nav-wrapper")
            var contactElement = document.getElementById("contact")
            var titleElement = document.getElementById("heading-title")
            var callAction = document.getElementById("call-to-action")
            var promoElement = document.getElementById("promotions-carousel")        
            
            
            if (myWidth <= 800)
                {
                    navElement.style.paddingTop="4px";
                    contactElement.style.paddingTop="6px";
                    contactElement.style.fontSize="0.88em";
                    titleElement.style.fontSize="2.5em";
                    callAction.style.top="69%"
                    callAction.style.left="40px"
                    callAction.style.fontSize="14px"
                    promoElement.style.visibility="hidden";
                }
            else if (myWidth <= 1024)
                {
                    navElement.style.paddingTop="12px";
                    contactElement.style.paddingTop="7px";
                    contactElement.style.fontSize="1em";
                    titleElement.style.fontSize="2.5em";
                    callAction.style.top="279px"
                    callAction.style.left="40px"
                    callAction.style.fontSize="16px"
                    promoElement.style.visibility="hidden";
                }        
            else
                {
                    navElement.style.paddingTop="12px";
                    contactElement.style.fontSize="1.2em";
                    contactElement.style.paddingTop="5px";
                    titleElement.style.fontSize="3.5em";
                    callAction.style.top="350px"
                    callAction.style.left="40px"
                    callAction.style.fontSize="18px"
                    promoElement.style.visibility="visible";
                }
        }
