            google.load("feeds", "1");

            function initialize() {
                activatePlaceholders();
                getZone();
                gTemp();
                fillFeed('indiana-insider-list', 'http://feeds2.feedburner.com/VisitIndiana');
            }

            google.setOnLoadCallback(initialize);

		/* TODO:  remove the explicit 'onmouseover' attributes and have them added at runtime.  add auto caching at same time.  */

            function makeFeatured(thumb, featuredID)
            {
                var feat = document.getElementById('homepage-featurephotos-featured');
                var featImg = feat.getElementsByTagName('img')[0];
                var thumbImg = thumb.getElementsByTagName('img')[0];
                var fob = document.getElementById('homepage-fob');
                
                feat.href = thumb.href;
                featImg.alt = thumbImg.alt

                featImg.src = thumbImg.src.replace(/thumbnails\//, '');                

                fob.href = thumb.href;
                
                return true;
            }
