- published: 05 May 2023
- views: 201116
'+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; })); }); -->
Andrea Britton is a British singer-songwriter and a soulful trance vocalist and runs her own online and brand marketing consultancy.
Andrea Britton runs her own online marketing and social media consultancy, where she writes a weekly blog that has attracted over 11,000 people in 2 years.
She spent over 15 years in the music industry releasing tracks globally. Britton's single "Am I on Your Mind?", recorded with Oxygen, made it to #30 on the UK Singles Chart in late 2002. In 2005, she had another hit single, "Winter", with DT8 Project, which made #35. Her other notable songs include the singles "Time Still Drifts Away" and "Inner Sense" with The Disco Brothers, "Wait for You" with Lost Witness, "Take My Hand" with Jurgen Vries (which peaked at #23) and "Counting Down The Days" with Sunfreakz in 2007 (peaked at #37 on the UK chart). She has appeared with 4 Strings and on numerous compilation albums worldwide, and continues to feature on many dance tracks around the world.
Three Drives, also known as Three Drives on a Vinyl, is a Dutch progressive trance duo founded by Erik de Koning and Ton van Empel. In June 2014, van Empel left the group.
Their best-known tracks are "Greece 2000" (originally released in 1997 by Massive Drive Recordings, with more mainstream releases on ZYX Music and Hooj Choons) and "Sunset on Ibiza".
Greece (i/ɡriːs/ GREESS; Greek: Ελλάδα, Elláda [eˈlaða]), officially the Hellenic Republic (Greek: Ελληνική Δημοκρατία, Ellīnikī́ Dīmokratía [eliniˈci ðimokraˈti.a]) and known since ancient times as Hellas (/ˈhɛləs/; Greek: Ελλάς, Ellás), is a country located in southeastern Europe. According to the 2011 census, Greece's population is around 10.8 million. Athens is the nation's capital and largest city, followed by Thessaloniki, which is commonly referred to as the co-capital.
Greece is strategically located at the crossroads of Europe, Asia, and Africa. Situated on the southern tip of the Balkan peninsula, it shares land borders with Albania to the northwest, the Republic of Macedonia and Bulgaria to the north and Turkey to the northeast. Greece consists of nine geographic regions: Macedonia, Central Greece, the Peloponnese, Thessaly, Epirus, the Aegean Islands (including the Dodecanese and Cyclades), Thrace, Crete, and the Ionian Islands. The Aegean Sea lies to the east of the mainland, the Ionian Sea to the west, and the Mediterranean Sea to the south. Greece has the longest coastline on the Mediterranean Basin and the 11th longest coastline in the world at 13,676 km (8,498 mi) in length, featuring a vast number of islands, of which 227 are inhabited. Eighty percent of Greece is mountainous, with Mount Olympus being the highest peak at 2,918 metres (9,573 ft).
In European elections, Greece is a constituency of the European Parliament, currently represented by twenty-one MEPs. It covers the member state of Greece.
As of October 2007
The 1981 European election was a by-election held after Greece joined the European Communities in 1981. The rest of the EC had voted in 1979.
The 1984 European election was the second European election and the first time Greece voted with the rest of the Community.
The 1989 European election was the third election to the European Parliament and was held on June 15 for Greece.
The 1994 European election was the fourth election to the European Parliament and was held on June 12 for Greece.
Source:
The 1999 European election was the fifth election to the European Parliament and was held on June 13 for Greece.
Sources:
The 2004 European election was the sixth election to the European Parliament and was held on June 13 for Greece. The ruling New Democracy party made strong gains, while the opposition Panhellenic Socialist Movement made smaller gains, both at the expense of minor parties.
Greece may refer to:
Embark on a 10-day journey through the captivating landscapes, history, and flavors of Greece. Discover the ancient landmarks of the capital, explore renowned sanctuaries, and marvel at coastal views. Experience the cosmopolitan islands of Mykonos and Santorini, known for their vibrant nightlife, pristine beaches, and breathtaking caldera views. Dive into the region's marine life with snorkeling and scuba diving excursions, and unwind with yoga or leisurely beach walks. Savor the delightful Greek cuisine and immerse yourself in the rich culture as you create memories that will last a lifetime. #Greece #Travel #Adventure #History #Culture #NaturalBeauty #IslandEscapes Subscribe for more travel content: @TopTravel_YT This video is for educational and entertainment purposes only. It includ...
Hello, friends!!! Today is a beautiful summer day and I am heading to a Greek beach to show you the best views and reveal the whole atmosphere of a beach holiday. Kalithea and Pefkochori Beach is one of the most beautiful beaches with clean sand and crystal clear water. Since the sea here is shallow, it warms up faster at the beginning of the season and stays warm longer at the end. Perhaps there are too many people here at the peak of the season, but after seeing this beach, you will understand why. Here you will see everything you like: bright sun, crystal clear sea and amazing golden sand. Let's have fun and enjoy together on the paradise Greek beaches of Kassandra Pefkochori Beach located https://maps.app.goo.gl/VDDgmTHgT15KeqGm8 Kalithea Beach located https://maps.app.goo.gl/5wiT4w...
Official music video for GREECE featuring Drake "GREECE" ft. Drake available at: https://DJKhaled.lnk.to/GREECE Official Audio: https://youtu.be/NCHFUHRe604 Subscribe to DJ Khaled on YouTube: https://DJKhaled.lnk.to/subscribeYD Listen to DJ Khaled: https://DJKhaled.lnk.to/listenYD Watch more videos by DJ Khaled: https://DJKhaled.lnk.to/listenYD/youtube Follow DJ Khaled Facebook: https://DJKhaled.lnk.to/followFI Twitter: https://DJKhaled.lnk.to/followTI Tik Tok: https://www.tiktok.com/@djkhaled Instagram: https://DJKhaled.lnk.to/followII Website: https://DJKhaled.lnk.to/followWI Spotify: https://DJKhaled.lnk.to/followSI Lyrics: Come with me, leave all of your things, yeah We can stop at Gucci, stop at Louis V, yeah Come with me, fly you out to Greece Full speed, survoler Par...
NBC News’ Matt Bradley reports on the aftermath and public response to several days of near constant earthquakes around the tourist hotspot of Santorini, Greece. » Subscribe to NBC News: http://nbcnews.to/SubscribeToNBC » Watch more NBC video: http://bit.ly/MoreNBCNews NBC News Digital is a collection of innovative and powerful news brands that deliver compelling, diverse and engaging news stories. NBC News Digital features NBCNews.com, MSNBC.com, TODAY.com, Nightly News, Meet the Press, Dateline, and the existing apps and digital extensions of these respective properties. We deliver the best in breaking news, live video coverage, original journalism and segments from your favorite NBC News Shows. Connect with NBC News Online! NBC News App: https://apps.nbcnews.com/mobile Breaking News...
Greece's prime minister has visited the island of Santorini to assure residents that authorities are doing everything in their power to protect the island from earthquake shocks. Thousands of tremors have hit Santorini in the past two weeks -- the strongest had a magnitude of 5.1. The quakes have caused residents and tourists to leave for the mainland in droves, leaving much of the island deserted. For more news go to: http://www.dw.com/en/ For more news, analysis and background information on the German election 2025 go to our dedicated page: https://www.dw.com/en/german-election-2025/t-70794502 Follow DW on social media: ►Instagram: https://www.instagram.com/dwnews ►TikTok: https://www.tiktok.com/@dwnews ►Facebook: https://www.facebook.com/deutschewellenews/ ►Twitter: https://twitt...
#greecetravel #greecetravelguide #Greece #santorini Greece Travel For First Time to Greece! Best GREECE ITINERARY! Americans In Greece Travel Guide. Welcome to Beyond the Empty Nest. I have many travel Vlogs up and please enjoy watching our experience in Greece, the Greek Islands of #santorini #milosgreece #parosisland #Athens, and more! I am an empty nester and I started my travel vlog a few years ago. I am currently trying to get to know as much of Greece as possible. Please subscribe and follow along. How to Book the Ferry https://www.ferryhopper.com/en/?aff_uid=kthjbrks Where I love to stay in Athens Greece, Have stayed here twice now and booked for a third time for 2023. Athens AirBnB, highly recommend. https://www.airbnb.com/rooms/29820608?source_impression_id=p3_167210110...
New Princess of Greece: Chrissy Vardinogiannis and Prince Nicholas Tied the Knot in a Royal Wedding Prince Nicholas of Greece and shipping heiress Chrissy Vardinogiannis have tied the knot in a stunning royal wedding at the historic Church of St. Nicholas Ragavas in Athens. The intimate yet elegant ceremony was attended by European royals and close family members, while the bride captivated everyone with her stunning gown and the legendary Antique Corsage Tiara, a symbol of continuity in the Greek royal family. In this video, we cover: 🔹 Where did the wedding take place, and why was this church chosen? 🔹 Which members of European royal families attended the ceremony? 🔹 What was the significance behind the bride’s wedding look? 🔹 How does this wedding compare to Prince Nicholas’s first m...
#klavdia #asteromata #eurovision2025 FOLLOW US ON IG: ▶ Instagram: https://instagram.com/couplecrib.meltingpot ▶ Carol's account: https://www.instagram.com/c.a.r.o.l.b ▶ Elie's account: https://www.instagram.com/eliemirza ---------- ▶ Facebook: https://facebook.com/thecouplecrib ▶ Twitter: https://twitter.com/TheCoupleCrib ▶ TikTok: https://tiktok.com/@thecouplecrib ---------- Subscribe to our second channel @TheCoupleCrib #greece #reaction #reactionvideo #foreignersreaction #foreignerreaction #couplereaction #couplesreaction #couple #react #eurovision #eurovisionreaction *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 pe...
The event at Annunciation Greek Orthodox Church will feature Greek music, dancing, food and self-guided tours of the church Subscribe to WISN on YouTube now for more: http://bit.ly/1emE5YX Get more Milwaukee news: http://www.wisn.com Like us: http://www.facebook.com/wisn12 Follow us: http://twitter.com/WISN12News Instagram: https://www.instagram.com/wisn12news/
Horrible Today: Live Footage Big Earthquake Destroys Santorini - Thousands of Visitors Panic and Flee At this point, more than 11,000 people had left Santorini as Greek authorities began to struggle to manage transportation logistics amid strong winds that had temporarily disrupted ferry operations the previous day. Major Earthquake in Greece | Mass Evacuations Underway earthquake #santoriniearthquake #greece #greecenews More than 1.300 undersea earthquakes have been recorded over the past three days in the islands of Santorini, Amorgos, Ios, and Anafi., prompting authorities to close schools and send emergency crews to the island. Greek authorities have sent special forces, rescue teams, tents and drones to the island of Santorini after hundreds of earthquakes were recorded in the ar...
Andrea Britton is a British singer-songwriter and a soulful trance vocalist and runs her own online and brand marketing consultancy.
Andrea Britton runs her own online marketing and social media consultancy, where she writes a weekly blog that has attracted over 11,000 people in 2 years.
She spent over 15 years in the music industry releasing tracks globally. Britton's single "Am I on Your Mind?", recorded with Oxygen, made it to #30 on the UK Singles Chart in late 2002. In 2005, she had another hit single, "Winter", with DT8 Project, which made #35. Her other notable songs include the singles "Time Still Drifts Away" and "Inner Sense" with The Disco Brothers, "Wait for You" with Lost Witness, "Take My Hand" with Jurgen Vries (which peaked at #23) and "Counting Down The Days" with Sunfreakz in 2007 (peaked at #37 on the UK chart). She has appeared with 4 Strings and on numerous compilation albums worldwide, and continues to feature on many dance tracks around the world.
You're cruel, device
Your blood, like ice
One look, could kill
My pain, your thrill
I wanna love you but I better not touch
I wanna hold you but my senses tell me to stop
I wanna kiss you but I want it too much
I wanna taste you but your lips are venomous poison
You're poison running through my veins
You're poison
I don't wanna break these chains
Your mouth, so hot
Your web, I'm caught
Your skin, so wet
Black lace, on sweat
I hear you calling and its needles and pins
I wanna hurt you just to hear you screaming my name
Don't wanna touch you but you're under my skin
I wanna kiss you but your lips are venomous poison
You're poison running trough my veins
You're poison
I don't wanna break these chains
Running deep inside my veins
Poison burning deep inside my veins
One look, could kill
My pain, your thrill
I wanna love you but I better not touch
I wanna hold you but my senses tell me to stop
I wanna kiss you but I want it too much
I wanna taste you but your lips are venomous poison
You're poison running trough my veins
You're poison
I don't wanna break these chains
Poison
I wanna love you but I better not touch
I wanna hold you but my senses tell me to stop
I wanna kiss you but I want it too much
I wanna taste you but your lips are venomous poison
You're poison running trough my veins
You're poison
I don't wanna break these chains