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

North Tyneside

The Metropolitan Borough of North Tyneside is a metropolitan borough of Tyne and Wear, in North East England, and is part of the Tyneside conurbation. Its seat is Wallsend Town Hall.

North Tyneside is bounded by Newcastle upon Tyne to the west, the North Sea to the east, the River Tyne to the south and Northumberland to the north. Within its bounds are the towns of Wallsend, North Shields and Whitley Bay, which form a continuously built-up area contiguous with Newcastle.

History

The borough was formed on 1 April 1974 by the merger of the county borough of Tynemouth, with the borough of Wallsend, part of the borough of Whitley Bay, the urban district of Longbenton and part of the urban district of Seaton Valley, all of which were in Northumberland.

Geography

The following places are located in North Tyneside:

  • Annitsford
  • Backworth
  • Benton
  • Burradon
  • Camperdown
  • Cullercoats
  • Earsdon
  • Forest Hall
  • Holystone
  • Killingworth
  • Monkseaton
  • Moorside
  • Murton
  • New York
  • North Shields
  • Northumberland Park
  • Preston
  • Seaton Burn
  • North Tyneside (UK Parliament constituency)

    Coordinates: 55°00′29″N 1°32′46″W / 55.008°N 1.546°W / 55.008; -1.546

    North Tyneside is a constituency represented in the House of Commons of the UK Parliament since 2010 by Mary Glindon of the Labour Party.

    History

    This seat was represented from its creation in 1997 by Stephen Byers of the Labour Party, who before that election represented the abolished seat of Wallsend from 1992. Byers stood down at the 2010 general election and his party selected local councillor Mary Glindon as their new candidate for the general election, which she won with a majority of 12,884.

    Constituency profile

    This constituency forms north-east suburbs to the largest city in the region, Newcastle. At the end of 2010 unemployment still reflected a slightly less strong economy than in the city's shipbuilding heyday and stood in this seat alone at 5.7% by claimant count, compared to a regional average of 5.5%, significantly lower than South Shields's 7.7%. As to the male only claimant total, this amounted to 7.8%, just part of a significant region-wide disparity but significantly lower than Middlesbrough's 12.8%, however both sets of figures were a little higher than the national average — Greater London saw an average of 4.1% and for men a proportion of 4.9%.

    North Tyneside Metropolitan Borough Council

    North Tyneside Metropolitan Borough Council is the local authority of North Tyneside in Tyne and Wear, England. It is a metropolitan district council, one of five in Tyne and Wear and one of 36 in the metropolitan counties of England, and provides the majority of local government services in North Tyneside.

    History

    The current local authority was first elected in 1973, a year before formally coming into its powers and prior to the creation of the Metropolitan Borough of North Tyneside on 1 April 1974. The council gained borough status, entitling it to be known as North Tyneside Metropolitan Borough Council.

    Political control

    Since the first election to the council in 1973 political control of the council has been held by the following parties:

    Mayor of North Tyneside

    Since 2013, the mayor of North Tyneside post has been held by Norma Redfearn of the Labour Party. Her predecessor was Linda Arkley of the Conservative Party.

    References

    Mayor of North Tyneside

    The Mayor of North Tyneside is the executive mayor of the borough of North Tyneside in Tyne and Wear, England. The incumbent since 2013 is Norma Redfearn.

    Referendum

    Elections

    2002

    2003 By-election

    A mayoral bye-election was held on 12 June 2003, which was won by Linda Arkley of the Conservative Party, after Chris Morgan resigned after he was arrested in relation to police investigations over allegations of possessing indecent images of children. He was subsequently cleared of all charges.

    2005

    2009

    2013

    References

    Tyneside

    Tyneside is a conurbation in North East England, defined by the Office for National Statistics, which is home to over 80 percent of the population of Tyne and Wear. It is historically part of the ceremonial counties of Northumberland and County Durham. It includes settlements on the banks of the River Tyne: the city of Newcastle upon Tyne and the Metropolitan Boroughs of Gateshead, North Tyneside and South Tyneside. The population of the conurbation was 774,891 according to the returned census of 2011. According to data from 2013 ONS population estimates; the Tyne Population, including the four unitary authorities of South Tyneside, North Tyneside, Gateshead and Newcastle was 832,469. Tyneside is the 7th largest conurbation in England. The only large settlement in Tyne and Wear that is not part of the Tyneside conurbation is Sunderland, which is on Wearside.

    Geordies

    The people of the Tyneside area, called "Geordies", have a reputation for their distinctive dialect and accent. Tynesiders may have been given this name, a local diminutive of the name "George", because their miners used George Stephenson's safety lamp (invented in 1815 and called a "Georgie lamp") to prevent firedamp explosions, rather than the Davy lamp used elsewhere. An alternative explanation relates that during the Jacobite risings of 1715 and 1745 the Tynesiders declared their allegiance to the Hanoverian kings of Great Britain George I and George II; whereas the rest of the county of Northumberland, to the north, stood loyal to James Francis Edward Stuart.

    Tyneside (UK Parliament constituency)

    Tyneside was a parliamentary constituency in the Tyneside area of north-east England, which returned one Member of Parliament (MP) to the House of Commons of the Parliament of the United Kingdom, elected by the first-past-the-post voting system.

    The constituency was created by the Redistribution of Seats Act 1885 for the 1885 general election, and abolished for the 1918 general election.

    Members of Parliament

    Elections

    Elections in the 1880s

    Elections in the 1890s

    Elections in the 1900s

    Elections in the 1910s

    General Election 1914/15:

    Another General Election was required to take place before the end of 1915. The political parties had been making preparations for an election to take place and by the July 1914, the following candidates had been selected;

  • Liberal: John Mackinnon Robertson
  • Unionist:

  • References

  • Leigh Rayment's Historical List of MPs – Constituencies beginning with "T" (part 2)
  • Podcasts:

    • returning rubbish to fly tipper

      published: 16 Jun 2021
    • These robbers said their last prayers before they burnt alive in Onitsha Anambra state today

      published: 20 May 2021
    • Jacob Rees-Mogg told to 'sit up man!' - BBC News

      Leader of the House of Commons Jacob Rees-Mogg was accused of being contemptuous for reclining across the seats in the chamber. Please subscribe HERE http://bit.ly/1rbfUog

      published: 04 Sep 2019
    • Haley and Hanna Cavinder on TikTok

      Miami guards Haley and Hanna Cavinder on TikTok. 2/13/2023

      published: 02 Mar 2023
    • #FAIL. Drug dealers unwittingly undertake police car - and get caught with £500k of cocaine

      Two drug dealers sped down a motorway hard shoulder to avoid queuing – but unwittingly undertook one of our officers who caught up with the pair and found them with a stash of cocaine. Dash-cam from the PC’s patrol car shows Simon Pagett undertaking on the M6 near junction 7 last November and the officer exclaiming “Really?” in disbelief at their audacity. Pagett, alongside pal Dean Stone, gestured to pull over on seeing the blue lights but then accelerated away at speeds topping 100mph. The in-car footage shows the 39-year-old weaving between cars on the A34 towards #Walsall and jumping several sets of red lights. He heads onto grassland where Stone jumps out clutching the bag of drugs. We later catch him trying to catch a taxi and recover the bag dumped in bushes. Pagett even does ...

      published: 03 Jun 2021
    • GYPSY TRAVELLER DECKS AN EX GANGSTER !!!! ( Part 1 )

      WHEN A GYPSY TRAVELLER ENCOUNTERS AN EX GANGSTER FROM THE STREETS, TWO WORLDS COLLIDE AND LET'S JUST SAY IT DOESN'T END WELL. See part 2 of this video here: https://youtu.be/0yHfti5PK7E

      published: 19 Jun 2022
    • Why restrict 'good' gun owners, resident asks President Obama at town hall

      When asked why he wants to restrict gun access for all owners, rather than just bad actors, President Barack Obama said, "It's just not true. ...There have been more guns sold since I've been president than just about any time in U.S. history." He spoke at a town hall in Elkhart, Indiana, on June 1, 2016, hosted by PBS NewsHour co-anchor Gwen Ifill. Stream your PBS favorites with the PBS app: https://to.pbs.org/2Jb8twG Find more from PBS NewsHour at https://www.pbs.org/newshour Subscribe to our YouTube channel: https://bit.ly/2HfsCD6 Follow us: Facebook: http://www.pbs.org/newshour Twitter: http://www.twitter.com/newshour Instagram: http://www.instagram.com/newshour Subscribe: PBS NewsHour podcasts: https://www.pbs.org/newshour/podcasts Newsletters: https://www.pbs.org/newshour/subscri...

      published: 02 Jun 2016
    • Dean Lynch Ward vs Decca Heggie full fight (Subscriber special edition we go front row)

      published: 19 Jun 2022
    • This Man Dug a Hole in His Backyard He Was Not Ready For What He Discovered There

      This Man Dug a Hole in His Backyard He Was Not Ready For What He Discovered There ▂▂▂▂▂▂▂▂▂▂▂▂▂▂ Our Shop : https://www.youtube.com/channel/UCnFpzNNl2WYYJrMbdgxlf4w/store For copyright issues relating to our channel please contact us directly at: wonderbotsupp@gmail.com ▂▂▂▂▂▂▂▂▂▂▂▂▂▂ This is WonderBot YouTube Channel a place where you can find daily heartwarming, Love, mysterious and family stories from around the world. If You Find Our Content Interesting Subscribe! Subscriber To Wonderbot: https://bit.ly/2x5ZNlV ▂▂▂▂▂▂▂▂▂▂▂▂▂▂ #Wonderbot #viralstory #storytime #viralstorie #viral_video #viral_videos

      published: 09 Feb 2021
    • Mother Sets Up Hidden Camera, Catches Her Husband In An Act That’s Swept The Whole World

      Hidden cameras are usually used for either home security or just spy on other people. However, some of the videos caught wholesome moments too. For instance, nanny cams reveal funny things kids do when nobody is watching, or just animals not exactly acting as animals. But when a mom set up a hidden camera, she didn’t know what to expect when she saw her husband doing a surprising thing. ► Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use Website ► For copyright matters relating to our...

      published: 09 Aug 2021
    developed with YouTube
    returning rubbish to fly tipper
    0:49

    returning rubbish to fly tipper

    • Order:
    • Duration: 0:49
    • Uploaded Date: 16 Jun 2021
    • views: 5293066
    https://wn.com/Returning_Rubbish_To_Fly_Tipper
    These robbers said their last prayers before they burnt alive in Onitsha Anambra state today
    0:31

    These robbers said their last prayers before they burnt alive in Onitsha Anambra state today

    • Order:
    • Duration: 0:31
    • Uploaded Date: 20 May 2021
    • views: 2875338
    https://wn.com/These_Robbers_Said_Their_Last_Prayers_Before_They_Burnt_Alive_In_Onitsha_Anambra_State_Today
    Jacob Rees-Mogg told to 'sit up man!' - BBC News
    0:37

    Jacob Rees-Mogg told to 'sit up man!' - BBC News

    • Order:
    • Duration: 0:37
    • Uploaded Date: 04 Sep 2019
    • views: 2494096
    Leader of the House of Commons Jacob Rees-Mogg was accused of being contemptuous for reclining across the seats in the chamber. Please subscribe HERE http://bit.ly/1rbfUog
    https://wn.com/Jacob_Rees_Mogg_Told_To_'Sit_Up_Man_'_BBC_News
    Haley and Hanna Cavinder on TikTok
    0:09

    Haley and Hanna Cavinder on TikTok

    • Order:
    • Duration: 0:09
    • Uploaded Date: 02 Mar 2023
    • views: 3774790
    Miami guards Haley and Hanna Cavinder on TikTok. 2/13/2023
    https://wn.com/Haley_And_Hanna_Cavinder_On_Tiktok
    #FAIL. Drug dealers unwittingly undertake police car - and get caught with £500k of cocaine
    2:43

    #FAIL. Drug dealers unwittingly undertake police car - and get caught with £500k of cocaine

    • Order:
    • Duration: 2:43
    • Uploaded Date: 03 Jun 2021
    • views: 6649950
    Two drug dealers sped down a motorway hard shoulder to avoid queuing – but unwittingly undertook one of our officers who caught up with the pair and found them with a stash of cocaine. Dash-cam from the PC’s patrol car shows Simon Pagett undertaking on the M6 near junction 7 last November and the officer exclaiming “Really?” in disbelief at their audacity. Pagett, alongside pal Dean Stone, gestured to pull over on seeing the blue lights but then accelerated away at speeds topping 100mph. The in-car footage shows the 39-year-old weaving between cars on the A34 towards #Walsall and jumping several sets of red lights. He heads onto grassland where Stone jumps out clutching the bag of drugs. We later catch him trying to catch a taxi and recover the bag dumped in bushes. Pagett even does a lap of a Toby Carvery car-park in a bid to shake off our advanced driver before giving up. The rucksack was found to contain five 1kg slabs of high-purity cocaine with a value of around half a million pounds. Pagett has been jailed for 7 years and Stone for 6 years. Report crime, get prevention advice, and see the latest news on our website http://www.west-midlands.police.uk/ You can get in touch with us via Live Chat at west-midlands.police.uk, via 101, or anonymously via Crimestoppers on 0800 555 111.
    https://wn.com/Fail._Drug_Dealers_Unwittingly_Undertake_Police_Car_And_Get_Caught_With_£500K_Of_Cocaine
    GYPSY TRAVELLER DECKS AN EX GANGSTER !!!!  ( Part 1 )
    1:40

    GYPSY TRAVELLER DECKS AN EX GANGSTER !!!! ( Part 1 )

    • Order:
    • Duration: 1:40
    • Uploaded Date: 19 Jun 2022
    • views: 4287668
    WHEN A GYPSY TRAVELLER ENCOUNTERS AN EX GANGSTER FROM THE STREETS, TWO WORLDS COLLIDE AND LET'S JUST SAY IT DOESN'T END WELL. See part 2 of this video here: https://youtu.be/0yHfti5PK7E
    https://wn.com/Gypsy_Traveller_Decks_An_Ex_Gangster_(_Part_1_)
    Why restrict 'good' gun owners, resident asks President Obama at town hall
    5:36

    Why restrict 'good' gun owners, resident asks President Obama at town hall

    • Order:
    • Duration: 5:36
    • Uploaded Date: 02 Jun 2016
    • views: 11870574
    When asked why he wants to restrict gun access for all owners, rather than just bad actors, President Barack Obama said, "It's just not true. ...There have been more guns sold since I've been president than just about any time in U.S. history." He spoke at a town hall in Elkhart, Indiana, on June 1, 2016, hosted by PBS NewsHour co-anchor Gwen Ifill. Stream your PBS favorites with the PBS app: https://to.pbs.org/2Jb8twG Find more from PBS NewsHour at https://www.pbs.org/newshour Subscribe to our YouTube channel: https://bit.ly/2HfsCD6 Follow us: Facebook: http://www.pbs.org/newshour Twitter: http://www.twitter.com/newshour Instagram: http://www.instagram.com/newshour Subscribe: PBS NewsHour podcasts: https://www.pbs.org/newshour/podcasts Newsletters: https://www.pbs.org/newshour/subscribe
    https://wn.com/Why_Restrict_'good'_Gun_Owners,_Resident_Asks_President_Obama_At_Town_Hall
    Dean Lynch Ward vs Decca Heggie full fight (Subscriber special edition we go front row)
    7:15

    Dean Lynch Ward vs Decca Heggie full fight (Subscriber special edition we go front row)

    • Order:
    • Duration: 7:15
    • Uploaded Date: 19 Jun 2022
    • views: 2477802
    https://wn.com/Dean_Lynch_Ward_Vs_Decca_Heggie_Full_Fight_(Subscriber_Special_Edition_We_Go_Front_Row)
    This Man Dug a Hole in His Backyard  He Was Not Ready For What He Discovered There
    22:40

    This Man Dug a Hole in His Backyard He Was Not Ready For What He Discovered There

    • Order:
    • Duration: 22:40
    • Uploaded Date: 09 Feb 2021
    • views: 3030141
    This Man Dug a Hole in His Backyard He Was Not Ready For What He Discovered There ▂▂▂▂▂▂▂▂▂▂▂▂▂▂ Our Shop : https://www.youtube.com/channel/UCnFpzNNl2WYYJrMbdgxlf4w/store For copyright issues relating to our channel please contact us directly at: wonderbotsupp@gmail.com ▂▂▂▂▂▂▂▂▂▂▂▂▂▂ This is WonderBot YouTube Channel a place where you can find daily heartwarming, Love, mysterious and family stories from around the world. If You Find Our Content Interesting Subscribe! Subscriber To Wonderbot: https://bit.ly/2x5ZNlV ▂▂▂▂▂▂▂▂▂▂▂▂▂▂ #Wonderbot #viralstory #storytime #viralstorie #viral_video #viral_videos
    https://wn.com/This_Man_Dug_A_Hole_In_His_Backyard_He_Was_Not_Ready_For_What_He_Discovered_There
    Mother Sets Up Hidden Camera, Catches Her Husband In An Act That’s Swept The Whole World
    9:34

    Mother Sets Up Hidden Camera, Catches Her Husband In An Act That’s Swept The Whole World

    • Order:
    • Duration: 9:34
    • Uploaded Date: 09 Aug 2021
    • views: 1546535
    Hidden cameras are usually used for either home security or just spy on other people. However, some of the videos caught wholesome moments too. For instance, nanny cams reveal funny things kids do when nobody is watching, or just animals not exactly acting as animals. But when a mom set up a hidden camera, she didn’t know what to expect when she saw her husband doing a surprising thing. ► Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use Website ► For copyright matters relating to our channel please contact us directly at : adsadsrah@gmail.com ► SUBSCRIBE US: http://bit.ly/2GUYwow ► Like us Our Facebook Page: http://bit.ly/2BVhGXm ► Follow On Twitter: http://bit.ly/2Xxe6fa ► OUR Website : http://bit.ly/2GUYwow #story time #trending #Viral_Stories
    https://wn.com/Mother_Sets_Up_Hidden_Camera,_Catches_Her_Husband_In_An_Act_That’S_Swept_The_Whole_World
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    returning rubbish to fly tipper

    0:49
    returning rubbish to fly tipper
    published: 16 Jun 2021
    Play in Full Screen
    0:31
    These robbers said their last prayers before they burnt alive in Onitsha Anambra state today
    published: 20 May 2021
    Play in Full Screen
    0:37
    Jacob Rees-Mogg told to 'sit up man!' - BBC News
    Leader of the House of Commons Jacob Rees-Mogg was accused of being contemptuous for recli...
    published: 04 Sep 2019
    Play in Full Screen
    0:09
    Haley and Hanna Cavinder on TikTok
    Miami guards Haley and Hanna Cavinder on TikTok. 2/13/2023
    published: 02 Mar 2023
    Play in Full Screen
    2:43
    #FAIL. Drug dealers unwittingly undertake police car - and get caught with £500k of cocaine
    Two drug dealers sped down a motorway hard shoulder to avoid queuing – but unwittingly und...
    published: 03 Jun 2021
    Play in Full Screen
    1:40
    GYPSY TRAVELLER DECKS AN EX GANGSTER !!!! ( Part 1 )
    WHEN A GYPSY TRAVELLER ENCOUNTERS AN EX GANGSTER FROM THE STREETS, TWO WORLDS COLLIDE AND ...
    published: 19 Jun 2022
    Play in Full Screen
    5:36
    Why restrict 'good' gun owners, resident asks President Obama at town hall
    When asked why he wants to restrict gun access for all owners, rather than just bad actors...
    published: 02 Jun 2016
    Play in Full Screen
    7:15
    Dean Lynch Ward vs Decca Heggie full fight (Subscriber special edition we go front row)
    published: 19 Jun 2022
    Play in Full Screen
    22:40
    This Man Dug a Hole in His Backyard He Was Not Ready For What He Discovered There
    This Man Dug a Hole in His Backyard He Was Not Ready For What He Discovered There ▂▂▂▂▂▂▂...
    published: 09 Feb 2021
    Play in Full Screen
    9:34
    Mother Sets Up Hidden Camera, Catches Her Husband In An Act That’s Swept The Whole World
    Hidden cameras are usually used for either home security or just spy on other people. Howe...
    published: 09 Aug 2021
    Play in Full Screen

    North Tyneside

    The Metropolitan Borough of North Tyneside is a metropolitan borough of Tyne and Wear, in North East England, and is part of the Tyneside conurbation. Its seat is Wallsend Town Hall.

    North Tyneside is bounded by Newcastle upon Tyne to the west, the North Sea to the east, the River Tyne to the south and Northumberland to the north. Within its bounds are the towns of Wallsend, North Shields and Whitley Bay, which form a continuously built-up area contiguous with Newcastle.

    History

    The borough was formed on 1 April 1974 by the merger of the county borough of Tynemouth, with the borough of Wallsend, part of the borough of Whitley Bay, the urban district of Longbenton and part of the urban district of Seaton Valley, all of which were in Northumberland.

    Geography

    The following places are located in North Tyneside:

  • Annitsford
  • Backworth
  • Benton
  • Burradon
  • Camperdown
  • Cullercoats
  • Earsdon
  • Forest Hall
  • Holystone
  • Killingworth
  • Monkseaton
  • Moorside
  • Murton
  • New York
  • North Shields
  • Northumberland Park
  • Preston
  • Seaton Burn
  • '); } 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)); } }); }); }); // -->
    ×