- published: 17 Nov 2020
- views: 9850213
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Jefferson County is a county located in the U.S. state of Pennsylvania. As of the 2010 census, the population was 45,200. Its county seat is Brookville. The county was established on March 26, 1804, from part of Lycoming County and later organized in 1830. It is named for President Thomas Jefferson. It is home to Punxsutawney Phil, the groundhog that predicts when spring will come every February 2 (Groundhog Day).
According to the U.S. Census Bureau, the county has a total area of 657 square miles (1,700 km2), of which 652 square miles (1,690 km2) is land and 4.4 square miles (11 km2) (0.7%) is water.
As of the census of 2000, there were 45,932 people, 18,375 households, and 12,862 families residing in the county. The population density was 70 people per square mile (27/km²). There were 22,104 housing units at an average density of 34 per square mile (13/km²). The racial makeup of the county was 98.97% White, 0.13% Black or African American, 0.16% Native American, 0.21% Asian, 0.01% Pacific Islander, 0.07% from other races, and 0.45% from two or more races. 0.41% of the population were Hispanic or Latino of any race. 31.1% were of German, 13.4% Italian, 10.8% American, 9.2% Irish and 7.8% English ancestry according to Census 2000.
Alaska! is an indie rock trio from the United States. The band was formed in San Francisco by Russell Pollard (formerly of Sebadoh and later of the Folk Implosion), Imaad Wasif (also later of Folk Implosion), with Lesley Ishino (formerly of the Red Aunts) later joining as drummer.
The band released their debut album, Emotions, in 2003, and a second, Rescue Through Tomahawk in 2005.
Alaska is a 1944 American crime adventure film directed by George Archainbaud. It stars Kent Taylor, Margaret Lindsay, and John Carradine.
Gary Corbett kills a pair of claim jumpers who did likewise to his father. He is charged with murder, but cannot be taken to Juneau to stand trial until the weather permits. Marshal John Masters keeps him in town until the prisoner can be moved.
Roxie Reagan, who sings at Tom LaRue's saloon, falls in love with Corbett, but she is trapped in a loveless marriage to John Reagan, an alcoholic has-been actor. LaRue also is in love with Roxie, and he and a local judge are suspected by Corbett of being in cahoots with the claim jumpers.
LaRue tries to frame Corbett for another murder, then sets the jail on fire. John Reagan courageously comes to Corbett's rescue, losing his own life in the process. The marshal deals with LaRue, but suddenly reveals that he is the one who has been backing the murderous claim jumpers all along. Corbett manages to get the better of Masters, then sets sail for San Francisco with his bride-to-be, Roxie.
Alaska is a periodical devoted to news and discussion of issues and features of and from Alaska. Most of its readership consists of persons outside of Alaska who are interested in the Alaskan way of life.
Alaska magazine was founded in 1935 in Ketchikan, Alaska, by Emery Fridolf Tobin (1895-1977) and J. Ray Roady (1907-1997). Tobin established himself as an opponent of Alaska statehood, although this may have been contradictory, given his ties to the Democratic party and the fact that he and Roady served as State Representatives in 1959.
Alaska magazine was originally titled the Alaska Sportsman Magazine, a name it retained until 1969. It operated much then as it does today, being sold through newsstand sales and subscriptions. The major difference in its early days was the fact that paper stock to print the magazine arrived via steamship, posing the threat of delays, and it operated out of a small basement. Another major difference is that the editorial and sales offices have moved to Alaska's economic center, the city of Anchorage.
Pennsylvania wine refers to wine made from grapes grown in the U.S. state of Pennsylvania. The climate in Pennsylvania is mild compared to surrounding states, with the moderating effects of Lake Erie to the north and the Atlantic Ocean to the east. 119 wineries are located in all parts of the state, including five designated American Viticultural Areas. Pennsylvania is the eighth-largest wine producing state in the country.
The 1964 Pennsylvania 200 was a NASCAR Grand National Series (now Sprint Cup Series) event that was held on July 21, 1964 at Lincoln Speedway in New Oxford, Pennsylvania.
There were 21 drivers on the grid; all of them were American-born males. Frank Tanner received the last-place finish due to an oil pressure issue on lap 2 out of the 200 laps that made up the regulation length of the race. There were only two lead changes; David Pearson managed to defeat Richard Petty by 11 seconds in only one hour and twelve minutes. While Pearson achieved a pole position with a speed of 86.289 miles per hour (138.869 km/h), the average speed of the race was only 82.586 miles per hour (132.909 km/h).Bob Welborn would retire from NASCAR after this race; having gone winless since the 1959 Western North Carolina 500.
Wendell Scott managed to charge ahead from a disappointing 21st place to a respectable fourth place during the course of the race.
The race car drivers still had to commute to the races using the same stock cars that competed in a typical weekend's race through a policy of homologation (and under their own power). This policy was in effect until roughly 1975. By 1980, NASCAR had completely stopped tracking the year model of all the vehicles and most teams did not take stock cars to the track under their own power anymore.
The 2010 Sunoco Red Cross Pennsylvania 500 was a NASCAR Sprint Cup Series stock car race held on August 1, 2010 at Pocono Raceway in Long Pond, Pennsylvania. Contested over 200 laps, it was the twenty-first race of the 2010 Sprint Cup Series season. Greg Biffle, driving for Roush Fenway Racing, won the race while Tony Stewart finished second, and Carl Edwards, who started twenty-fifth, clinched third.
Prior to the race, Kevin Harvick led the Drivers' Championship with 2,920 points, and Hendrick Motorsports driver Jeff Gordon was second with 2,736 points. Behind them in the Drivers' Championship, Denny Hamlin was third with 2,660 points, and Jimmie Johnson was fourth with 2,659 points. Kurt Busch was fifth with 2,658 points. In the Manufacturers' Championship, Chevrolet was leading with 143 points, twenty points ahead of their rival Toyota. In the battle for third place, Ford had 90 points, six ahead of Dodge.
Pawn Stars Chumlee Sentenced To Life In Prison After This Pawn Stars is a very interesting show when you think about it. Because it’s honestly a show about grown men, running a pawn shop, trying to do all they can to get both interesting items, and items that can make them a lot of money. Plus, since it’s a family (plus Chumlee), it adds an extra dynamic that has kept it on for over 11 years. But if you look at the true history of the shop, you’ll find yourself looking at some bad beats and bad breaks that don’t paint the Pawn Stars in the best light. Allow us to show you then. Be sure to like the video and subscribe to the channel! Click HERE To Enter The GIVEAWAY! https://www.youtube.com/channel/UC76r9K-_Knc7d38c9uKRwaw?sub_confirmation=1 CLICK THE LINK DOWN BELOW TO CLAIM YOUR FREE ...
Diana Lovejoy collapsed in a California courtroom Monday after she was convicted in what authorities call a botched murder-for-hire plot targeting her now-ex-husband, who was shot in September 2016 but survived. Subscribe to the "CBSN" Channel HERE: http://bit.ly/1Re2MgS Watch "CBSN" live HERE: http://cbsn.ws/1PlLpZ7 Follow "CBSN" on Instagram HERE: http://bit.ly/1PO0dkx Like "CBSN" on Facebook HERE: http://on.fb.me/1o3Deb4 Follow "CBSN" on Twitter HERE: http://bit.ly/1V4qhIu Get the latest news and best in original reporting from CBS News delivered to your inbox. Subscribe to newsletters HERE: http://cbsn.ws/1RqHw7T Get your news on the go! Download CBS News mobile apps HERE: http://cbsn.ws/1Xb1WC8 Get new episodes of shows you love across devices the next day, stream local news live,...
Unfortunate? Or Karma? Get all Kevin E Lake novels and short story collections in print or Kindle at: https://amzn.to/3h2pVIr Get all of our homemade items in our Etsy store “Homesteading Haven” at this link: https://www.etsy.com/shop/HomesteadingHaven?ref=l2-about-shopname Check out my wife Dearly’s channel @lifewithdearly8102 Show some love to Jenny Jo @astaroth271
Here’s The Bridge That Gives Drivers Panic Attacks When They Go Over It If you're new, Subscribe! → https://goo.gl/ZskRcx Extreme Trends is the #1 place for all your heart warming stories about amazing people that will inspire you everyday. Make sure to subscribe and never miss a single video! #viralstory #amazingpeople #extremetrends
20 MOMENTS IF IT WERE NOT FILMED, NO ONE WOULD BELIEVE! Check out these crazy moments if it were not filmed, no one would believe! . . 📌Subscribe to never miss a video! 🖤Leave a like if you enjoyed:)
A driver who destroys cars while parking, an angry woman who takes revenge on her husband or even clumsy employees. When surveillance cameras are placed in the right place, it works! Here are 10 people who crossed the line without knowing they were being filmed!
Watch the video to see why Frank is no longer on American Pickers! #AmericanPickers #Frank #RealityTV Read Full Article: https://www.looper.com/469384/we-finally-understand-why-frank-fritz-is-no-longer-on-american-pickers/
An amazing deposit, an old treasure box with coins from WW II hidden in the stream. One of my TREASURES https://youtu.be/a7v7MMaF7ok New? SUBSCRIBE and help me reach 1,000,000 subscribers before the end of this era !! WATCH MY TOP 10 BEST VIDEOS : https://www.youtube.com/watch?v=a2dYJPjuefc&list=PLiApMZdUF9iHtxlhXI-m7XmpXZvj7EPy_ TREASURES: Beautiful playlist: WATCH MY TOP BEST VIDEOS : https://www.youtube.com/watch?v=a2dYJPjuefc&list=PLiApMZdUF9iHtxlhXI-m7XmpXZvj7EPy_ SUBSCRIBE to: https://www.youtube.com/channel/UCaIEdQ8hf-N_XqoNl4RaoSw?sub_confirmation=1 THANKS :) 1. Secret tunnel & chamber found while metal detecting pt.2 - archeological dig in old city https://youtu.be/a2dYJPjuefc 2. metal detecting HIDDEN BARREL & DEPOSIT of gold found while treasure hunting https://youtu.be/PRI...
The two men had never met, but when they did outside an Ybor bar in September in 2019, it was deadly. Now, Justin Jasper is headed to prison for killing Dyante Neal with one punch. In surveillance video obtained by FOX 13 News, Neal can be seen standing with another man outside Coyote Ugly in Ybor at 2:30 in the morning. Suddenly, Jasper shows up in the video and, seemingly without provocation, punches Neal -- who never saw it coming. Neal is seen hitting his head on the ground in the fall. Prosecutors say Neal never regained consciousness and died at the hospital of severe head trauma. MORE: https://www.fox13news.com/news/man-gets-7-years-in-prison-for-deadly-ybor-punch FOX 13 Tampa Bay brings you the important videos like breaking news, Tampa Bay weather, and local stories. But also ...
Check out these super strange sounds, in this The Proof Is Out There compilation. 0:00 - Mysterious Suburban Drone Defies Explanation 5:14 - International Disturbing Hum 9:54 - Ominous Metallic Moaning 14:23 - Strange Scranton Sounds #TheProofIsOutThere Subscribe for more from The Proof Is Out There and other great The HISTORY Channel shows: http://histv.co/SubscribeHistoryYT Watch more The Proof Is Out There on YouTube in this playlist: https://histv.co/WatchTheProofIsOutThere Check out exclusive The HISTORY Channel content: History Newsletter - https://histv.co/newsletter Website - https://histv.co/History Facebook - https://histv.co/Facebook Twitter - https://histv.co/Twitter Watch all new episodes of The Proof Is Out There, returning soon, and stay up to date on all of your favor...
Jefferson County is a county located in the U.S. state of Pennsylvania. As of the 2010 census, the population was 45,200. Its county seat is Brookville. The county was established on March 26, 1804, from part of Lycoming County and later organized in 1830. It is named for President Thomas Jefferson. It is home to Punxsutawney Phil, the groundhog that predicts when spring will come every February 2 (Groundhog Day).
According to the U.S. Census Bureau, the county has a total area of 657 square miles (1,700 km2), of which 652 square miles (1,690 km2) is land and 4.4 square miles (11 km2) (0.7%) is water.
As of the census of 2000, there were 45,932 people, 18,375 households, and 12,862 families residing in the county. The population density was 70 people per square mile (27/km²). There were 22,104 housing units at an average density of 34 per square mile (13/km²). The racial makeup of the county was 98.97% White, 0.13% Black or African American, 0.16% Native American, 0.21% Asian, 0.01% Pacific Islander, 0.07% from other races, and 0.45% from two or more races. 0.41% of the population were Hispanic or Latino of any race. 31.1% were of German, 13.4% Italian, 10.8% American, 9.2% Irish and 7.8% English ancestry according to Census 2000.