'+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; })); }); -->

Valley Brook, Oklahoma

Valley Brook is a town in Oklahoma County, Oklahoma, United States and is part of the Oklahoma City Metropolitan Area. The population was 817 at the 2000 census. The town is well known for its large number of adult entertainment businesses and corrupt police department.

Geography

Valley Brook is located at 35°24′13″N 97°28′55″W / 35.40361°N 97.48194°W / 35.40361; -97.48194 (35.403662, -97.482063).

According to the United States Census Bureau, the town has a total area of 0.3 square miles (0.78 km2), all of it land.

Demographics

As of the census of 2000, there were 817 people, 298 households, and 204 families residing in the town. The population density was 3,037.6 people per square mile (1,168.3/km²). There were 337 housing units at an average density of 1,253.0 per square mile (481.9/km²). The racial makeup of the town was 77.48% White, 4.41% African American, 7.83% Native American, 0.37% Asian, 1.96% from other races, and 7.96% from two or more races. Hispanic or Latino of any race were 8.20% of the population.

Podcasts:

  • Controversial club opens in Valley Brook

    A controversial club has opened in Valley Brook. Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://koco.com Like us:http://facebook.com/koco5 Follow us: http://twitter.com/koconews Google+: https://plus.google.com/+KOCO/posts

    published: 23 Feb 2015
  • #JUSTLISTED 124 Valley Brook Road | Bridgwater Trails | Winnipeg | Manitoba | The Ed Dale Team

    Better than a SHOW HOME!!! You are going to love this gorgeous 2,776 sf 2-storey, loaded with upgrades and situated on one of the best streets in Bridgwater Trails. This home has a modern floor plan with a bedroom and full bathroom on the main floor. The eat-in kitchen has 2-tone cabinetry with a HUGE island, quartz countertops, SS appliances, backsplash and SPICE KITCHEN!! The adjoining family rm is spacious in size w/ a tray ceiling and a built-in entertainment centre w/ electric FP. Upstairs there are 3 large bedrooms plus a loft space with the primary having lots of room for furniture and is complete with a dlx ensuite bath and large walk-in closet. Downstairs the bsmt is fully finished with a large rec-room that has 9' ceiling height and big windows with a 5th bedroom and a 4th full b...

    published: 20 Sep 2024
  • Excessive force lawsuit filed in Valley Brook

    Excessive force lawsuit filed in Valley Brook Stay informed about Oklahoma news and weather! Follow KFOR News 4 on our website and social channels. https://kfor.com/ https://www.youtube.com/c/kfor4news https://www.facebook.com/kfor4 https://twitter.com/kfor https://www.instagram.com/kfortv4/

    published: 23 Jun 2023
  • Suspect arrested after 2 people stabbed at Valley Brook club

    Suspect arrested after 2 people stabbed at Valley Brook club Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://www.koco.com Like us: http://facebook.com/koco5 Follow us: http://twitter.com/koconews Instagram: https://www.instagram.com/koco5news/

    published: 31 Aug 2023
  • Police search for gunman in Valley Brook shots fired incident

    Authorities say that no one was able to get a good look at a gunman who opened fire on two vehicles. Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://koco.com Like us:http://facebook.com/koco5 Follow us: http://twitter.com/koconews Google+: https://plus.google.com/+KOCO/posts

    published: 29 Jul 2014
  • Valley Brook Crossing Apartments in Decatur, GA - ForRent.com

    Valley Brook Crossing Apartments for rent in Decatur, GA on ForRent.com: (470) 440-3764 - http://www.forrent.com/apartment-community-profile/1000331 Availability, pricing and special promotions subject to change daily. Spacious one and two bedroom floor plans for rent at Valley Brook Crossing with controlled access gates. Every apartment home has washer and dryer connections, walk-in closets and individual outdoor storage units. Residents enjoy the sparkling swimming pool, picnic area with BBQ Grills and tennis court. Our apartment community is just minutes to I-285, I-85, Hwy 78, Downtown Atlanta, Charming Downtown Decatur, Emory University, Little 5 Points, Dekalb Farmers Market, Stone Mountain Park, Fernbank Museum/IMAX and North DeKalb Mall. - 777 Valley Brook Xing

    published: 27 Mar 2017
  • Dashcam video shows suspect firing at Valley Brook police officers during chase

    The Valley Brook Police Department has released dashcam video of a suspect firing shots at officers involved in a chase Monday. Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://www.koco.com Like us: http://facebook.com/koco5 Follow us: http://twitter.com/koconews Instagram: https://www.instagram.com/koco5news/

    published: 19 Feb 2019
  • Family, friends gather to celebrate life of fallen Valley Brook police officer

    Family, friends gather to celebrate life of fallen Valley Brook police officer Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://www.koco.com Like us: http://facebook.com/koco5 Follow us: http://twitter.com/koconews Instagram: https://www.instagram.com/koco5news/

    published: 27 Jun 2023
  • Man accused of shooting Valley Brook officer apologized for ‘hurting one of you guys’

    The man accused of shooting a Valley Brook police officer over the weekend made his first court appearance by video Wednesday to hear the charges against him. SSubscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://koco.com/ Like us:http://facebook.com/koco5 Follow us: http://twitter.com/koconews Google+: https://plus.google.com/+KOCO/posts

    published: 04 Jan 2017
  • Lawsuit filed against City of Valley Brook, police chief, and 3 others after 2018 aggressive arrest

    A traffic stop from over 2 and a half years ago is now leading to a lawsuit against the city of Valley Brook, its police chief, as well as three others.

    published: 16 Jul 2021
developed with YouTube
Controversial club opens in Valley Brook
1:40

Controversial club opens in Valley Brook

  • Order:
  • Duration: 1:40
  • Uploaded Date: 23 Feb 2015
  • views: 753
A controversial club has opened in Valley Brook. Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://koco.com Like us:http://facebook.com/koco5 Follow us: http://twitter.com/koconews Google+: https://plus.google.com/+KOCO/posts
https://wn.com/Controversial_Club_Opens_In_Valley_Brook
#JUSTLISTED 124 Valley Brook Road | Bridgwater Trails | Winnipeg | Manitoba | The Ed Dale Team
1:01

#JUSTLISTED 124 Valley Brook Road | Bridgwater Trails | Winnipeg | Manitoba | The Ed Dale Team

  • Order:
  • Duration: 1:01
  • Uploaded Date: 20 Sep 2024
  • views: 603
Better than a SHOW HOME!!! You are going to love this gorgeous 2,776 sf 2-storey, loaded with upgrades and situated on one of the best streets in Bridgwater Trails. This home has a modern floor plan with a bedroom and full bathroom on the main floor. The eat-in kitchen has 2-tone cabinetry with a HUGE island, quartz countertops, SS appliances, backsplash and SPICE KITCHEN!! The adjoining family rm is spacious in size w/ a tray ceiling and a built-in entertainment centre w/ electric FP. Upstairs there are 3 large bedrooms plus a loft space with the primary having lots of room for furniture and is complete with a dlx ensuite bath and large walk-in closet. Downstairs the bsmt is fully finished with a large rec-room that has 9' ceiling height and big windows with a 5th bedroom and a 4th full bathroom. Outside the yard is mostly finished and landscaped with a oversized garage and acrylic stucco. For more information and pictures visit: https://eddale.com/mylistings.html/listing.202422721-124-valley-brook-road-winnipeg-r3y-0z8.102892122 Trust Winnipeg’s top realtors with your real estate journey. Selling or buying a home can be a stressful milestone in your life, but partnering with the Ed Dale Team - RE/MAX Executives can transform your experience. With 40+ years of experience in real estate, the Ed Dale Team are experts in Winnipeg’s market. Have a house for sale? The realtors at the Ed Dale Team offer a quick and efficient sale that hits all digital and traditional marketing avenues. Purchasing a home? Work with a realtor that will listen to your needs, consider your lifestyle, and bring you researched facts, prices, and listings. Learn how the Ed Dale Team became some of the top realtors in Winnipeg: Facebook: https://www.facebook.com/eddaleteam/?ref=br_rs Instagram: https://www.instagram.com/eddaleteam We love hearing your feedback! Comment your favourite feature :) Subscribe to our youtube channel to see the most desirable homes in Winnipeg: https://www.youtube.com/user/eddalejr #EdDaleTeam #WinnipegRealtor #WinnipegRealEstate #winnipegHouseforSale #Remaxexecutives #Winnipeg #Manitoba
https://wn.com/Justlisted_124_Valley_Brook_Road_|_Bridgwater_Trails_|_Winnipeg_|_Manitoba_|_The_Ed_Dale_Team
Excessive force lawsuit filed in Valley Brook
2:16

Excessive force lawsuit filed in Valley Brook

  • Order:
  • Duration: 2:16
  • Uploaded Date: 23 Jun 2023
  • views: 1078
Excessive force lawsuit filed in Valley Brook Stay informed about Oklahoma news and weather! Follow KFOR News 4 on our website and social channels. https://kfor.com/ https://www.youtube.com/c/kfor4news https://www.facebook.com/kfor4 https://twitter.com/kfor https://www.instagram.com/kfortv4/
https://wn.com/Excessive_Force_Lawsuit_Filed_In_Valley_Brook
Suspect arrested after 2 people stabbed at Valley Brook club
1:18

Suspect arrested after 2 people stabbed at Valley Brook club

  • Order:
  • Duration: 1:18
  • Uploaded Date: 31 Aug 2023
  • views: 614
Suspect arrested after 2 people stabbed at Valley Brook club Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://www.koco.com Like us: http://facebook.com/koco5 Follow us: http://twitter.com/koconews Instagram: https://www.instagram.com/koco5news/
https://wn.com/Suspect_Arrested_After_2_People_Stabbed_At_Valley_Brook_Club
Police search for gunman in Valley Brook shots fired incident
1:43

Police search for gunman in Valley Brook shots fired incident

  • Order:
  • Duration: 1:43
  • Uploaded Date: 29 Jul 2014
  • views: 512
Authorities say that no one was able to get a good look at a gunman who opened fire on two vehicles. Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://koco.com Like us:http://facebook.com/koco5 Follow us: http://twitter.com/koconews Google+: https://plus.google.com/+KOCO/posts
https://wn.com/Police_Search_For_Gunman_In_Valley_Brook_Shots_Fired_Incident
Valley Brook Crossing Apartments in Decatur, GA - ForRent.com
1:40

Valley Brook Crossing Apartments in Decatur, GA - ForRent.com

  • Order:
  • Duration: 1:40
  • Uploaded Date: 27 Mar 2017
  • views: 1351
Valley Brook Crossing Apartments for rent in Decatur, GA on ForRent.com: (470) 440-3764 - http://www.forrent.com/apartment-community-profile/1000331 Availability, pricing and special promotions subject to change daily. Spacious one and two bedroom floor plans for rent at Valley Brook Crossing with controlled access gates. Every apartment home has washer and dryer connections, walk-in closets and individual outdoor storage units. Residents enjoy the sparkling swimming pool, picnic area with BBQ Grills and tennis court. Our apartment community is just minutes to I-285, I-85, Hwy 78, Downtown Atlanta, Charming Downtown Decatur, Emory University, Little 5 Points, Dekalb Farmers Market, Stone Mountain Park, Fernbank Museum/IMAX and North DeKalb Mall. - 777 Valley Brook Xing
https://wn.com/Valley_Brook_Crossing_Apartments_In_Decatur,_Ga_Forrent.Com
Dashcam video shows suspect firing at Valley Brook police officers during chase
0:43

Dashcam video shows suspect firing at Valley Brook police officers during chase

  • Order:
  • Duration: 0:43
  • Uploaded Date: 19 Feb 2019
  • views: 1085
The Valley Brook Police Department has released dashcam video of a suspect firing shots at officers involved in a chase Monday. Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://www.koco.com Like us: http://facebook.com/koco5 Follow us: http://twitter.com/koconews Instagram: https://www.instagram.com/koco5news/
https://wn.com/Dashcam_Video_Shows_Suspect_Firing_At_Valley_Brook_Police_Officers_During_Chase
Family, friends gather to celebrate life of fallen Valley Brook police officer
2:04

Family, friends gather to celebrate life of fallen Valley Brook police officer

  • Order:
  • Duration: 2:04
  • Uploaded Date: 27 Jun 2023
  • views: 293
Family, friends gather to celebrate life of fallen Valley Brook police officer Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://www.koco.com Like us: http://facebook.com/koco5 Follow us: http://twitter.com/koconews Instagram: https://www.instagram.com/koco5news/
https://wn.com/Family,_Friends_Gather_To_Celebrate_Life_Of_Fallen_Valley_Brook_Police_Officer
Man accused of shooting Valley Brook officer apologized for ‘hurting one of you guys’
1:18

Man accused of shooting Valley Brook officer apologized for ‘hurting one of you guys’

  • Order:
  • Duration: 1:18
  • Uploaded Date: 04 Jan 2017
  • views: 716
The man accused of shooting a Valley Brook police officer over the weekend made his first court appearance by video Wednesday to hear the charges against him. SSubscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://koco.com/ Like us:http://facebook.com/koco5 Follow us: http://twitter.com/koconews Google+: https://plus.google.com/+KOCO/posts
https://wn.com/Man_Accused_Of_Shooting_Valley_Brook_Officer_Apologized_For_‘Hurting_One_Of_You_Guys’
Lawsuit filed against City of Valley Brook, police chief, and 3 others after 2018 aggressive arrest
2:53

Lawsuit filed against City of Valley Brook, police chief, and 3 others after 2018 aggressive arrest

  • Order:
  • Duration: 2:53
  • Uploaded Date: 16 Jul 2021
  • views: 4760
A traffic stop from over 2 and a half years ago is now leading to a lawsuit against the city of Valley Brook, its police chief, as well as three others.
https://wn.com/Lawsuit_Filed_Against_City_Of_Valley_Brook,_Police_Chief,_And_3_Others_After_2018_Aggressive_Arrest
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Controversial club opens in Valley Brook

A controversial club has opened in Valley Brook. Subscribe to KOCO on YouTube now for more: http://bit.ly/1lGfjIl Get more Oklahoma City news: http://koco.com Like us:http://facebook.com/koco5 Follow us: http://twitter.com/koconews Google+: https://plus.google.com/+KOCO/posts
1:40
Controversial club opens in Valley Brook
A controversial club has opened in Valley Brook. Subscribe to KOCO on YouTube now for more...
published: 23 Feb 2015
Play in Full Screen
1:01
#JUSTLISTED 124 Valley Brook Road | Bridgwater Trails | Winnipeg | Manitoba | The Ed Dale Team
Better than a SHOW HOME!!! You are going to love this gorgeous 2,776 sf 2-storey, loaded w...
published: 20 Sep 2024
Play in Full Screen
2:16
Excessive force lawsuit filed in Valley Brook
Excessive force lawsuit filed in Valley Brook Stay informed about Oklahoma news and weath...
published: 23 Jun 2023
Play in Full Screen
1:18
Suspect arrested after 2 people stabbed at Valley Brook club
Suspect arrested after 2 people stabbed at Valley Brook club Subscribe to KOCO on YouTube...
published: 31 Aug 2023
Play in Full Screen
1:43
Police search for gunman in Valley Brook shots fired incident
Authorities say that no one was able to get a good look at a gunman who opened fire on two...
published: 29 Jul 2014
Play in Full Screen
1:40
Valley Brook Crossing Apartments in Decatur, GA - ForRent.com
Valley Brook Crossing Apartments for rent in Decatur, GA on ForRent.com: (470) 440-3764 - ...
published: 27 Mar 2017
Play in Full Screen
0:43
Dashcam video shows suspect firing at Valley Brook police officers during chase
The Valley Brook Police Department has released dashcam video of a suspect firing shots at...
published: 19 Feb 2019
Play in Full Screen
2:04
Family, friends gather to celebrate life of fallen Valley Brook police officer
Family, friends gather to celebrate life of fallen Valley Brook police officer Subscribe ...
published: 27 Jun 2023
Play in Full Screen
1:18
Man accused of shooting Valley Brook officer apologized for ‘hurting one of you guys’
The man accused of shooting a Valley Brook police officer over the weekend made his first ...
published: 04 Jan 2017
Play in Full Screen
2:53
Lawsuit filed against City of Valley Brook, police chief, and 3 others after 2018 aggressive arrest
A traffic stop from over 2 and a half years ago is now leading to a lawsuit against the ci...
published: 16 Jul 2021
Play in Full Screen

Valley Brook, Oklahoma

Valley Brook is a town in Oklahoma County, Oklahoma, United States and is part of the Oklahoma City Metropolitan Area. The population was 817 at the 2000 census. The town is well known for its large number of adult entertainment businesses and corrupt police department.

Geography

Valley Brook is located at 35°24′13″N 97°28′55″W / 35.40361°N 97.48194°W / 35.40361; -97.48194 (35.403662, -97.482063).

According to the United States Census Bureau, the town has a total area of 0.3 square miles (0.78 km2), all of it land.

Demographics

As of the census of 2000, there were 817 people, 298 households, and 204 families residing in the town. The population density was 3,037.6 people per square mile (1,168.3/km²). There were 337 housing units at an average density of 1,253.0 per square mile (481.9/km²). The racial makeup of the town was 77.48% White, 4.41% African American, 7.83% Native American, 0.37% Asian, 1.96% from other races, and 7.96% from two or more races. Hispanic or Latino of any race were 8.20% of the population.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: valley brook

Edit

Jefferson County property transfers: Real estate sales range from $203K to $393K

Courier Journal 31 Jan 2025
Show Caption. Hide Caption. President of Columbus Realtors breaks down homebuying and selling. Columbus Realtors President Scott Hrabcak explains how new real-estate rules impact homebuyers and sellers ... 6604 BROOK VALLEY DR, DOWNER DEAN to RAI KAMALI .
Edit

Salomone: Trophy trout?

Vail Daily 30 Jan 2025
Brook trout have a 16-inch minimum to qualify for recognition ... Two decades ago, a long walk into the valley above Yeoman yielded a football-shaped 17-inch brook trout. Would that same brook trout rate highly on the trophy scale in Canada? Not likely.
Edit

Remake of Curtis Apartments at Worcester's Great Brook Valley nears next phase

The Gardner News 30 Jan 2025
WORCESTER — As the first phase of the revitalization of the Curtis Apartments is quickly taking shape in the Great Brook Valley neighborhood, plans for the next phase are under review by city boards.
Edit

Alabama high school basketball: Final boys and girls statewide rankings for 2024-25 season

Montgomery Advertiser 30 Jan 2025
The Alabama Sports Writers Association high school basketball rankings, the last of the season.. GIRLS. CLASS 7A. 1. Hillcrest-Tuscaloosa (28-0). 2. Vestavia Hills (25-2). 3 ... 4 ... 5 ... Mountain Brook (21-6) ... Mountain Brook (23-4) ... Pinson Valley (16-8) ... Brooks (20-9).
Edit

Section III girls basketball stats leaders by season average (through Jan. 27)

The Post-Standard 29 Jan 2025
Brooke Reddington West Canada Valley 14 249 16.6 ... Brooke Reddington West Canada Valley 15 22 1.5 ... Brooke Reddington West Canada Valley 15 187 12.5 ... Brooke Reddington West Canada Valley 15 40 2.7 ... Brooke Reddington West Canada Valley 15 25 1.7.
Edit

Section III girls basketball stats leaders by class (through Jan. 27)

The Post-Standard 29 Jan 2025
Brooke Reddington West Canada Valley 15 68 22 44 249 ... Brooke Reddington West Canada Valley 15 22 ... Brooke Reddington West Canada Valley 15 187 ... Brooke Reddington West Canada Valley 15 40 ... Brooke Reddington West Canada Valley 15 25.
Edit

Sullivan and Okaw Valley sever co-op for football

Journal Gazette 29 Jan 2025
Sullivan and Okaw Valley’s co-op agreement for football has been severed after Sullivan informed Okaw Valley, according to a release from Okaw Valley athletic director Brooks Inman ... Sullivan-Okaw Valley won, 36-12.
Edit

Initial Quarterly Holdings Report by Institutional Manager (Form 13F-HR) (Valley Brook Capital Group Inc)

Public Technologies 29 Jan 2025
) SEC FORM 13F-HR ... The reader should not assume that the information is accurate and complete. UNITED STATES SECURITIES AND EXCHANGE COMMISSION. Washington, D.C. 20549 ... Valley Brook Capital Group, Inc ... 538 Valley Brook Road ... Valley Brook Capital Group Inc.
Edit

Basketball, wrestling wind into February

Oelwein Daily Register 29 Jan 2025
Chris Jans is a Wapsie Valley graduate and third-year head coach of Mississippi State ... Brooks McKowen is a Wapsie Valley graduate and 12th-year head coach. The Peacocks (14-5, 8-3 Great Lakes Valley Conference) have won five in a row.
Edit

Westmoreland County girls basketball notebook: 5 teams already punched playoff tickets

Pittsburgh Tribune Review 29 Jan 2025
Chasing the record ... Brooke Stewart of East Allegheny is third with 3,055, and Steel Valley’s Jess Strom is fourth with 2,840 ... Sizable impact ... Derry senior Jane Huss erupted for a career-high 37 points Tuesday in a 66-57 win over Ligonier Valley.
Edit

High school roundup for Jan. 28, 2025: Quaker Valley knocks off Class 4A No. 1 Avonworth

Pittsburgh Tribune Review 29 Jan 2025
Dana Kromah scored 22 points as Quaker Valley knocked off Class 4A No ... Seton LaSalle 66, Steel Valley 32 – Noah Sear scored 15 points and Keenu Brooks had 14 for Seton LaSalle (7-10, 4-3) in a Section 3-3A win.
Edit

SIX MATMEN PLACEWINNERS

Marshall County Journal 28 Jan 2025
Dashel Davidson (BH) pinned Zachary Fisher (Hamlin/Castlewood) 3.25; pinned Vanden Virchow (Sioux Valley) 1.26; pinned by Christian Ehresmann (Groton Area) .43; pinned James Fitzpatrick (Brookings) 4.00; Third place match.
Edit

Two Beaver Valley football programs experience roster turnover amid transfers

The Times - Beaver 28 Jan 2025
Central Valley running back Jance Henry, Aliquippa running back Sa’Nir Brooks and defensive back Larry Moon have all transferred out of their respective programs in the past month ... to.”Sa’Nir Brooks.
Edit

Girls basketball: Schedule and submitted game stats for Jan. 27-Feb. 2 games

Lohud 28 Jan 2025
Ursuline tops Mamaroneck 62-44 in girls basketball ... 23, 2025 ... 27-Feb. 2 ... — Brooke Green ... Pleasantville 39, Blind Brook 27. Putnam Valley 38, Haldane 23 ... Putnam Valley at Blind Brook, 5 p.m ... Croton at Putnam Valley, 4.30 p.m ... Briarcliff at Blind Brook, 5 p.m.

Most Viewed

×