'); if(!WVM.IS_STREAMING){ $videoEl.append('' + '' + ''); } setTimeout(function(){ $('.mute-overlay').on('touchstart click', function(e){ if(e.handled === false) return; e.stopPropagation(); e.preventDefault(); e.handled = true; player.muted(false); //console.log("volumee " + WVM.activePlayer.volume()); $(this).hide(); $(this).css('display', 'none'); var currentTime = player.currentTime(); if(currentTime 0){ if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); //console.log("container height: " + WVM.CONTAINER_HEIGHT); $(window).on( "resize", function() { if(deviceName == 'desktop'){ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top; }else{ WVM.VIDEO_TOP = $('#media-container-' + videoId).offset().top - $('.next-dropdown-accordion').height(); } if(deviceName == 'desktop'){ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); }else{ WVM.VIDEO_HEIGHT = $('#html5-video-' + videoId).outerHeight(); } WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); console.log("container height: " + WVM.CONTAINER_HEIGHT); }); //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); $(window).on( "scroll", function() { if(!WVM.IS_FLOATING){ if(deviceName == 'desktop'){ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId).height(); }else{ WVM.CONTAINER_HEIGHT = $('#media-container-' + videoId + " .hlsvideo-wrapper").height() + $('#media-container-' + videoId + " .now-playing-container").height(); } } //var top = $('#media-container-' + videoId).offset().top; var offset = WVM.VIDEO_TOP + (WVM.VIDEO_HEIGHT / 2); var offsetBack = WVM.VIDEO_TOP; var changed = false; //console.log("VIDEOTOP: " + WVM.VIDEO_TOP); //console.log("VIDEOHEIGHT: " + WVM.VIDEO_HEIGHT); //console.log("scrolltop " + $(window).scrollTop()); //only float if playing var isPlaying = WVM['player_state' + videoId]['IS_PLAYING'] || WVM['player_state' + videoId]['AD_IS_PLAYING']; if(isPlaying){ $('.vjs-loading-spinner').hide(); } var offsetFloatAd = 99999999; if(deviceName == 'desktop' && $('#float_anchor').length > 0){ offsetFloatAd = $('#float_anchor').offset().top - WVM.VIDEO_HEIGHT; //console.log("float anchor offset top " + offsetFloatAd); } if($(window).scrollTop() > offset && isPlaying && !WVM['player_state' + videoId]['CANCEL_FLOATING']){ $('#media-placeholder-' + videoId).height(WVM.CONTAINER_HEIGHT); $('#media-placeholder-' + videoId).css('display', 'block'); if(!WVM.IS_FLOATING){ changed = true; } WVM.IS_FLOATING = true; $('#media-container-' + videoId).addClass('floating-video'); var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(sWidth > 900 && WADS.IS_STICKING){ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky'); } else if(WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('mobile-ad-is-sticky-noad'); } } else if(!WADS.IS_STICKING){ if(!TOP_AD_VIEWED){ $('#media-container-' + videoId).removeClass('desktop-ad-is-sticky'); }else{ $('#media-container-' + videoId).addClass('desktop-ad-is-sticky-noad'); } } //set right var sWidth = window.innerWidth || document.documentElement.clientWidth; var sHeight = window.innerHeight || document.documentElement.clientHeight; if(deviceName == 'desktop' || sWidth > 900){ var leftPos2 = $('aside').get(0).getBoundingClientRect().left; var leftPos = $('aside').offset().left ; $('#media-container-' + videoId).css('left', leftPos + "px"); var newWidth = Math.floor(sWidth / 3.5); $('#media-container-' + videoId).css('width', newWidth + "px"); } else{ $('#media-container-' + videoId).css('width', "100% !important"); $('#media-container-' + videoId + ' .now-playing-container').css('display', 'block'); $('#media-container-' + videoId + ' .next-dropdown-accordion').css('display', 'block'); } //floating-video $('#media-container-' + videoId + " " + '.page-carousel-wrapper').hide(); setTimeout(function(){ var hWrapper = $('.floating-video .hlsvideo-wrapper').height(); var npWidth = $('.floating-video .now-playing-container').height(); var ndWidth = $('.floating-video .next-dropdown-header').height() + 20; var scrollerHeight = sHeight - (hWrapper + npWidth + ndWidth); scrollerHeight = 180; //scrollerHeight = parseInt(scrollerHeight * 0.5); if(WVM.device_name == 'desktop'){ $('#media-container-' + videoId + " " + " .mobile-list-videos").height(scrollerHeight); } }, 100); }else if($(window).scrollTop() 0){ var container = document.querySelector('#page-carousel-' + fullVideoId); imagesLoaded( container, function() { var screenWidth = window.innerWidth || document.documentElement.clientWidth; if(screenWidth > 850){ WVM.IS_DESKTOP = true; $('#page-carousel-' + fullVideoId + ' .page-carousel-lg-slides').css('display', 'block'); WVM['player_settings' + fullVideoId].slider = $('#page-carousel-' + fullVideoId).bxSlider({ maxSlides: 4, minSlides: 4, slideWidth: 305, infiniteLoop: false, hideControlOnEnd: true, useCSS: true, pager: false, slideMargin: 15, moveSlides: 1, nextText: '', prevText: '' }); }else{ WVM.IS_DESKTOP = false; $('.page-carousel-wrapper').css('display', 'block'); } }); } }; WVM.setupToggleButton = function(fullVideoId, player){ if($('.nextplay-switch-' + fullVideoId).length > 0){ new DG.OnOffSwitchAuto({ cls:'.nextplay-switch-' + fullVideoId, height: 24, trackColorOn:'#F9F9F9', trackColorOff:'#222', textColorOn: '#222', textColorOff: '#222', textOn:'On', textOff:'Off', listener:function(name, checked){ var theVal = 1; if(!checked){ theVal = 0; } $.ajax({ url: '/ajax/update_autoplay_video/', data: { autoplay_on: theVal }, type: 'POST', dataType: 'json', success: function(data) { WVM['player_settings' + fullVideoId]['autoplay'] = checked; }, error : function(){ console.log("Error loading video"); } }); } }); } }; WVM.setupAccordionButton = function(fullVideoId){ var deviceName = 'desktop'; $('#next-dropdown-accordion-button-' + fullVideoId).on('click', function(){ if($(this).find('i').hasClass('fa-chevron-up')){ //hide $(this).find('i').removeClass('fa-chevron-up'); $(this).find('i').addClass('fa-chevron-down'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideUp(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); } var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); //playerId, mediaId, fieldName var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //alert("Getting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }else{ //expand $(this).find('i').addClass('fa-chevron-up'); $(this).find('i').removeClass('fa-chevron-down'); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').css('display', 'block'); if(deviceName == "desktop" && !$('#media-container-' + fullVideoId).hasClass('floating-video')){ $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').css('display', 'block'); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').hide(); if(!WVM.player_state139682['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } }else{ $('#media-container-' + fullVideoId + " " + '.mobile-list-wrapper').slideDown(); $('#media-container-' + fullVideoId + " " + '.page-carousel-wrapper').hide(); if(!$('#media-container-' + fullVideoId).hasClass('floating-video')){ if(!WVM.player_state139682['CAROUSEL_INIT']){ WVM.setupCarousel(fullVideoId); } } } $('#video-slider-nexttitle' + fullVideoId).css('display', 'none'); } }); var currVideoId = WVM['player_state' + fullVideoId]['VIDEO_ID']; //console.log("current Video " + currVideoId); var nextVideoId = WVM.getNextPlaylistIndex(currVideoId); var myTitle = WVM.getPlaylistData(fullVideoId, nextVideoId, 'noprefixtitle'); //console.log("setting title " + myTitle); $('#video-slider-nexttitle' + fullVideoId).css('display', 'inline'); $('#video-slider-nexttitle' + fullVideoId).html(myTitle); }; WVM.sendbeacon = function(action, nonInteraction, value, eventLabel) { var eventCategory = 'Video'; if (window.ga) { //console.log("sending action: " + action + " val: " + value + " label " + eventLabel); ga('send', 'event', { 'eventCategory': eventCategory, 'eventAction': action, 'eventLabel': eventLabel, 'eventValue': value, 'nonInteraction': nonInteraction }); } }; WVM.getNextPlaylistIndex = function(mediaId, returnArrayIndex){ var currId = null; if(mediaId == null){ return null; } for(var x =0; x 20){ if(fullDuration > 1 && ((fullDuration - fullCurrent) > 1) && !$('.vjs-loading-spinner').hasClass('badspinner')){ console.log("hiding spinner"); $('.vjs-loading-spinner').addClass('badspinner'); } } var duration_time = Math.floor(this.duration()); //this is a hack because the end video event is not firing... var current_time = Math.floor(this.currentTime()); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 10) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ if('desktop' == "iphone" && playerState.AD_ERROR){ console.log("skipped timeupdate end"); }else{ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } } if(!playerState.START_SENT){ WVM.sendbeacon('start', true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); playerState.START_SENT = true; } var currentTime, duration, percent, percentPlayed, _i; currentTime = Math.round(this.currentTime()); duration = Math.round(this.duration()); percentPlayed = Math.round(currentTime / duration * 100); for (percent = _i = 0; _i = percent && __indexOf.call(playerState['PERCENTS_TRACKED'], percent) 0) { playerState['PERCENTS_TRACKED'].push(percent); } } } }); //player.off('ended'); player.on('ended', function(){ console.log("ended"); playerState.IS_PLAYING = false; WVM.sendbeacon("complete", true, playerState.VIDEO_ID, playerState.VIDEO_TITLE); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); }else{ console.log("Playlist complete (no more videos)"); } }); //player.off('adserror'); player.on('adserror', function(e){ //$('#ima-ad-container').remove(); WVM.lastAdRequest = new Date().getTime() / 1000; console.log(e); console.log("ads error"); var errMessage = e['data']['AdError']['l']; playerState.AD_IS_PLAYING = false; playerState.IS_PLAYING = false; // && errMessage == 'The VAST response document is empty.' if(!playerState.AD_ERROR){ var dTime = new Date().getTime(); WVM.firstPrerollTagUrl = WVM.getFirstPrerollUrl(); console.log("calling backup ad tag url: " + WVM.firstPrerollTagUrl); WVM.activePlayer.ima.changeAdTag(WVM.firstPrerollTagUrl + "?" + dTime); WVM.activePlayer.ima.requestAds(); //WVM.activePlayer.src({ // src: masterSrc, // type: 'video/mp4' //}); //WVM.firstPrerollTagUrl = ""; } playerState.AD_ERROR = true; }); //player.off('error'); player.on('error', function(event) { if (player.error().code === 4) { player.error(null); // clear out the old error player.options().sources.shift(); // drop the highest precedence source console.log("now doing src"); console.log(player.options().sources[0]); player.src(player.options().sources[0]); // retry return; } }); //player.off('volumechange'); player.on('volumechange', function(event) { console.log(event); var theHeight = $('#media-container-' + playerState.ORIGINAL_ID + ' .vjs-volume-level').css('height'); var cssVolume = 0; if(theHeight){ cssVolume = parseInt(theHeight.replace('%', '')); } var theVolume = player.volume(); if(theVolume > 0.0 || cssVolume > 0){ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'none'); }else{ $('#media-container-' + playerState.ORIGINAL_ID + ' .mute-overlay').css('display', 'block'); } }); WVM.reinitRawEvents(playerState.ORIGINAL_ID); setInterval(function(){ WVM.reinitRawEvents(playerState.ORIGINAL_ID); }, 2000); } if(!WVM.rawCompleteEvent){ WVM.rawCompleteEvent = function(e){ var playerState = WVM['player_state139682']; console.log("firing raw event due to all other events failing"); var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); //if(playerSettings.autoplay_next && newMediaId){ if(newMediaId){ WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } }; } if(!WVM.rawTimeupdateEvent){ WVM.rawTimeupdateEvent = function(e){ var playerState = WVM['player_state139682']; var rawVideoElem = document.getElementById('html5-video-' + playerState['ORIGINAL_ID'] + '_html5_api'); var fullCurrent = rawVideoElem.currentTime * 1000; var fullDuration = rawVideoElem.duration * 1000; var current_time = Math.floor(rawVideoElem.currentTime); console.log("raw timeupdate: " + fullCurrent + " out of " + fullDuration); if ( current_time > 0 && ( fullCurrent >= (fullDuration - 50) )){ var currId = playerState.VIDEO_ID; var newMediaId = WVM.getNextPlaylistIndex(currId); if(newMediaId){ console.log("loading new video from rawtimeupdate"); WVM.load_video(newMediaId, true, playerState.ORIGINAL_ID); } } if(!$('.vjs-loading-spinner').hasClass('badspinner')){ $('.vjs-loading-spinner').addClass('badspinner') } }; } WVM.reinitRawEvents = function(playerId){ var playerState = WVM['player_state' + playerId]; var rawVideoElem = document.getElementById('html5-video-' + WVM['player_state' + playerId]['ORIGINAL_ID'] + '_html5_api'); //COMPLETE EENT if( WVM['player_state' + playerId].COMPLETE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawCompleteEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawCompleteEvent, false); //TIME UPDATE EVENT if( WVM['player_state' + playerId].TIMEUPDATE_EVENT){ rawVideoElem.removeEventListener('ended', WVM.rawTimeupdateEvent, false); } rawVideoElem.addEventListener('ended', WVM.rawTimeupdateEvent, false); WVM['player_state' + playerId].COMPLETE_EVENT = true; WVM['player_state' + playerId].TIMEUPDATE_EVENT = true; };
NEW BERLIN (CBS 58) --The annual NARI Home & Remodeling Show will be slightly smaller this year as the coronavirus pandemic keeps more people at home and interested in making improvements.
NARI Milwaukee is hosting its home and remodeling show Oct. 16-18 at State Fair Park. Around 70 NARI Milwaukee members will host exhibit booths. Last year, more than 100 members staffed exhibit booths. The home and remodeling show has exhibitors for all types of remodeling and home improvement products and services.
Were excited to connect homeowners who are eager to get their home improvements underway with local contractors. By hosting a safe and accessible show, were helping reopen the economy and support area small businesses, said Diane Welhouse, executive director of NARI Milwaukee, in a news release. Nearly 80% of our members are small businesses with fewer than 10 employees so the annual show is important to them.
With people staying at home more during the pandemic, NARI members have said that business is good even though some segments of the economy are seeing significant declines as a result of COVID's effect on business.
Todays home is working overtime as adults and children are using it as their restaurant, office, classroom, entertainment spot and vacation destination, Welhouse said in the release. NARI Milwaukee members report many homeowners are looking to improve, repurpose and expand their space due to these increased demands.
The show will have a limited capacity with one-way aisles to enforce social distancing. All exhibitors and attendees will be required to wear face coverings, in compliance with a statewide mask mandate.
I had the chance to speak with Michael Maples, general manger of "Renovations Group" out of Hartland. He took me on a tour at a home in New Berlin.The houserecently underwent a major renovation project, including an 1100 square-foot addition, raised roof, and new kitchen cabinetry. Maples says the upcoming NARI show is invaluable. It's a way to ask the experts to help you formulate a plan. But he says you need to do some research before you attend. You should know what your budget is along with a general idea of what you're wanting.
For all the information about this weekend's NARI Home & Remodeling Show, just click here. Keep in mind there are some COVID restrictions you need to know about before you show up to the event.
To view this video please enable JavaScript, and consider upgrading to a web browser that supports HTML5 video
Visit link:
This weekend's NARI Home & Remodeling Show a good tool to tackle renovation projects - WDJT
- State historical commission awards $150k to Heritage Foundation for Winstead House restoration - williamsonherald.com - November 4th, 2024 [November 4th, 2024]
- Refresh your home on a budget with these easy house projects - The Spokesman Review - November 4th, 2024 [November 4th, 2024]
- Inside the ongoing Hinchee House restoration: How volunteers, donations can boost project - KBTV Fox 4 Beaumont - September 29th, 2024 [September 29th, 2024]
- HGTV's Blockbuster Renovation Competition Series 'Rock the Block' To Return In 2025 With New Veterans Versus Rookies Twist | Pressroom - Warner Bros.... - September 29th, 2024 [September 29th, 2024]
- Dayton House to celebrate 20 years since renovation - The Globe - September 29th, 2024 [September 29th, 2024]
- Rock The Block Renewed For Season 6 By HGTV With Returning Vets Jonathan & Jordan Knight Among Others - Deadline - September 29th, 2024 [September 29th, 2024]
- 11 Weirdest Things People Have Found During Home Renovations - Architectural Digest - September 20th, 2024 [September 20th, 2024]
- Creator of a $100M Restaurant Empire Has Taken on Restoring a Greek Village - Barron's - September 20th, 2024 [September 20th, 2024]
- Retired couple 'traumatised' after three-week home renovation turns into two-year 60,000 nightmare - Yahoo News UK - September 20th, 2024 [September 20th, 2024]
- Couple's 'three-week' home renovation turns into 60,000 two-year nightmare - Devon Live - September 20th, 2024 [September 20th, 2024]
- Interview with the couple behind Wrights Eppstein House Restoration - Parametric Architecture - September 7th, 2024 [September 7th, 2024]
- Aldi insider reveals 5 top tips on how to renovate your home on a budget - Hexham Courant - September 7th, 2024 [September 7th, 2024]
- Island neighbors lend a helping hand to a resident in need of major home restoration - KRIS 6 News Corpus Christi - August 25th, 2024 [August 25th, 2024]
- Loctite, Habitat for Humanity team up for Cleveland home renovation - Crain's Cleveland Business - August 25th, 2024 [August 25th, 2024]
- They Had Different Problem-Solving Styles and a Modern House to Restore. How Did They Get It Done? - The Wall Street Journal - August 25th, 2024 [August 25th, 2024]
- Qualified Remodeler's TOP 500 Residential Remodelers Offers Insights on $500 billion R&R Market - Business Wire - August 17th, 2024 [August 17th, 2024]
- Families forced to leave RV park they call home - Restoration NewsMedia - March 14th, 2024 [March 14th, 2024]
- Record-setting Concorde set to return to museum home after restoration - BreakingNews.ie - March 14th, 2024 [March 14th, 2024]
- HGTV Fans Say They're "Obsessed" with Lil Jon's Home Renovation Show - Country Living - February 16th, 2024 [February 16th, 2024]
- Home show to highlight local home improvement businesses - The Daily Times - February 16th, 2024 [February 16th, 2024]
- The outdoors is the artwork in a Hong Kong home with stunning green views - Post Magazine - February 16th, 2024 [February 16th, 2024]
- Ant McPartlin and wife Anne-Marie in 'change of heart' over house renovation - Entertainment Daily - February 16th, 2024 [February 16th, 2024]
- NYC Going Inc. Announces Major Expansion: Bringing Renowned Home Remodeling Services to All Five Boroughs ... - PR.com - January 13th, 2024 [January 13th, 2024]
- Can higher lodging costs cut restoration losses? - Canadian Underwriter - January 13th, 2024 [January 13th, 2024]
- Regina Hall Surprises Her Friend of 15 Years With a Life-Changing Home Renovation - House Beautiful - January 13th, 2024 [January 13th, 2024]
- Founder and owner of Jericho Home Improvements killed in shooting - KMBC Kansas City - January 13th, 2024 [January 13th, 2024]
- Magnolia's Director of Styling Reveals Waco Home Renovation - House Beautiful - January 13th, 2024 [January 13th, 2024]
- Eerie Discovery During Home Renovation Goes Viral - BNN Breaking - January 13th, 2024 [January 13th, 2024]
- This home renovation could save you thousands of dollars and its easier to install than you might think - Yahoo! Voices - January 13th, 2024 [January 13th, 2024]
- A local property manager organized power restoration in Hallowell after this week's flooding - Kennebec Journal and Morning Sentinel - December 28th, 2023 [December 28th, 2023]
- Restoration Hardwares CEO Pays $28 Million for His Second Malibu Beach House - Yahoo Singapore News - December 28th, 2023 [December 28th, 2023]
- Big Media's Home Renovation Isn't Over - by Claire Atkinson - The Ankler. - December 28th, 2023 [December 28th, 2023]
- Colorado AG says he will look into Statewide Restoration complaints as fire victims say they were abandoned - KOAA News 5 - December 11th, 2023 [December 11th, 2023]
- Gisele Bndchen Reveals the Tool She Uses to Manage 'Incredible' Home Renovation Project - PEOPLE - December 11th, 2023 [December 11th, 2023]
- TikTok Famous Tulsa Couple Transforming Lives With Free Home Remodeling Projects - News On 6 - December 11th, 2023 [December 11th, 2023]
- 10 Top Home Decor and Renovation Trends for 2024, According to Opendoor - Real Simple - December 11th, 2023 [December 11th, 2023]
- Christina Hall Shares "Stunning" Photos of $12M Home Renovation - House Beautiful - December 11th, 2023 [December 11th, 2023]
- When is it Time to Call the Pros After a DIY Home Renovation Goes Wrong? - Alberta Prime Times - December 11th, 2023 [December 11th, 2023]
- HGTV looks to raise the stakes in home renovation with latest formats - C21Media - December 11th, 2023 [December 11th, 2023]
- NC man accused of taking money for home renovations, not completing work - Yahoo News - December 11th, 2023 [December 11th, 2023]
- #TBT: Austin's Pioneer Farms preserves & expands the living history of Central Texas' past - KEYE TV CBS Austin - March 24th, 2023 [March 24th, 2023]
- Restoration company warns Sask. homeowners of extreme weather damage ... - February 27th, 2023 [February 27th, 2023]
- 'Bring them home': Restoration efforts have condors returning to Yurok Tribal lands - Herald and News - February 27th, 2023 [February 27th, 2023]
- This restored 1884 Irving Spencer House is the oldest in Portlands Irvington neighborhood - OregonLive - February 19th, 2023 [February 19th, 2023]
- 31 Mid City homes in Baton Rouge will undergo an $8.7 million renovation - The Advocate - February 19th, 2023 [February 19th, 2023]
- PROPERTY MATTERS: Brewery owners looking to expand into waffles, and other development news - Connect Savannah.com - December 14th, 2022 [December 14th, 2022]
- World Champion Filipe Toledo To Present United Nations World Restoration Flagships Alongside Celebrities Jason Momoa, Ellie Goulding and Global Stars... - December 14th, 2022 [December 14th, 2022]
- Restoration Services | ServiceMaster Restore - September 5th, 2022 [September 5th, 2022]
- Faith community still integral in flood recovery efforts - The Mountaineer - September 5th, 2022 [September 5th, 2022]
- Frank Lloyd Wright house reopens to visitors following 'transformative' restoration - Building Design - September 5th, 2022 [September 5th, 2022]
- Apni Party submits memorandum to L-G for restoration of J&K's statehood - The Statesman - September 5th, 2022 [September 5th, 2022]
- 110-year-old historic vessel Battleship Texas moving to Galveston for restoration - KTVZ - September 5th, 2022 [September 5th, 2022]
- Signal Restoration Names Executive VP of Business Development - CleanLink - July 8th, 2022 [July 8th, 2022]
- Montana attorney general warns of scams and fraud in flood damage restoration - Bozeman Daily Chronicle - July 8th, 2022 [July 8th, 2022]
- SWFL gives a new home to threatened wildlife species - Wink News - July 8th, 2022 [July 8th, 2022]
- Musseling Back from Near Extinction | US Fish & Wildlife Service - US Fish and Wildlife Service - July 8th, 2022 [July 8th, 2022]
- Pittsfield Looks into the Future of Wahconah Park - iBerkshires.com - July 8th, 2022 [July 8th, 2022]
- Long Path Ahead for Burma Road Restoration - Newport This Week - July 8th, 2022 [July 8th, 2022]
- York couple hopes their mobile repair and restoration business brings value to the community - Daily Press - July 8th, 2022 [July 8th, 2022]
- Restoration crews busy helping people with storm damage - WANE - July 8th, 2022 [July 8th, 2022]
- Beirut house installed in London's V&A museum - The National - July 8th, 2022 [July 8th, 2022]
- Ohio childrens services workers respond to crisis of Cuyahoga kids living in county office building: The Wak - cleveland.com - July 8th, 2022 [July 8th, 2022]
- Camden Herald letter: Thanks for supporting the Vulcan Locomotive restoration - Courier-Gazette & Camden Herald - July 8th, 2022 [July 8th, 2022]
- Over $1.4 million in grants announced for coastal communities - Wisconsin Examiner - July 8th, 2022 [July 8th, 2022]
- Havenwoods State Forest in Milwaukee is the result of 'healing' after a military past - WUWM - July 8th, 2022 [July 8th, 2022]
- It was up there with some of the hurricane-force winds Powell residents wait for power restoration after storms - WATE 6 On Your Side - July 8th, 2022 [July 8th, 2022]
- This Peugeot 604 Is One Man's Obsessive Restoration - Car and Driver - July 8th, 2022 [July 8th, 2022]
- Restoration work at Olean Legion thanks to DRI fund - Olean Times Herald - July 8th, 2022 [July 8th, 2022]
- Renowned Dermatologist - Dr. Matt Leavitt joins Gore Range Capital as an Executive Partner - Business Wire - July 8th, 2022 [July 8th, 2022]
- Save the Date - Flint Township View - MiHomepaper - July 8th, 2022 [July 8th, 2022]
- Learn to make the most of your garden at these summer events - OregonLive - July 8th, 2022 [July 8th, 2022]
- This 1971 Datsun 510 May Be The Attainable Japanese Icon You Need - Top Speed - July 8th, 2022 [July 8th, 2022]
- Get inspiration from these amazing home improvement projects in Alabama - AL.com - April 19th, 2022 [April 19th, 2022]
- New HGTV series include a home renovation show in Minneapolis - Bring Me The News - April 19th, 2022 [April 19th, 2022]
- Mayor Bruce Harrell Announces One Seattle Day of Service on May 21st - Office of the Mayor - Seattle.gov - April 19th, 2022 [April 19th, 2022]
- Dedication and open house slated for 1883 Ridge Valley schoolhouse restoration in West Rockhill - The Reporter - April 19th, 2022 [April 19th, 2022]
- Magnolia Network: What's Coming and Returning in May 2022 - Adweek - April 19th, 2022 [April 19th, 2022]
- RTE architect Hugh Wallace on doing his own home renovation - Sunday World - April 19th, 2022 [April 19th, 2022]
- Volunteers are the heart of our community | News, Sports, Jobs - Maui News - April 19th, 2022 [April 19th, 2022]
- 'Furniture with good bones': Marshfield restoration artist breathes new life into antiques - The Patriot Ledger - January 25th, 2022 [January 25th, 2022]