//the images+text turn into a purple background
        function heightChange(){
            var sectionW = $('#home-content .imgCaption img').width();
            $('#home-content .imgCaption p').width(sectionW);
            var imgW = $('#images img').width();
            $('span.panelTitle').width(imgW);
            $('.gPadding p').width(imgW);
            var imgH = $('#images img').height();
            $('.panelInfo span.panelTitle').height('48px');
        }
    //use function for purple box overlay
        setInterval(heightChange);
        $(window).resize(function(){    
            setInterval(heightChange);
        });