- published: 03 Jul 2013
- views: 2056020
'+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; })); }); -->
Santa Cruz (or Santacruz) may refer to:
Since the beginning of the island's settlement, Praia has been an important centre: it was the centre of the first Captaincy of Terceira (1456-1470), under the command of Jácome de Bruges, then the first Donatary-Captain. Praia was elevated to the status town in 1480, under the stewardship of then Donatry-Captain Álvaro Martins Homem. At the end of the 15th and then 16th century, it contributed to the economy and prosperity of the region.
In 1582, D. António, Prior of Crato disembarked in the Praia, escaping his conflict with Phillip II of Spain, where he was acclaimed by the people's of the Azores. At the end of the Phillippian dynastic union, Francisco Ornelas da Câmara acclaimed D. John IV of Portugal as King of Portugal on 24 March 1641 in the courtyard of the parochial church. He was supported by the gathered populous, ending a period of Spanish occupation.
During the Liberal Wars between Liberals and Absolutists (1828-1834) the citizens of Praia sided with Liberal faction, resulting in a battle on 11 August 1829. An Miguelist armada, that included 21 ships and military troops that landed, confronted the local population, who resisted heroically and defeated the powerful armada. This victory influenced Queen D. Maria II to change and bestow the name of Praia da Vitória to community.
"Santa Cruz (You're Not That Far)" is the debut single by Irish band The Thrills, taken from the album So Much for the City. It was released on November 11, 2002.
The single was re-released on 25 August 2003, and it went to #33 on the UK Singles charts.
All songs written and composed by The Thrills.
Raphaël Haroche (born 7 November 1975), professionally known under his mononym Raphaël, is a French singer–songwriter and actor.
Raphaël was born as Raphaël Haroche on 7 November 1975 in Paris, France, and was raised in Boulogne-Billancourt, Hauts-de-Seine. Through his father he is of Moroccan Jewish and Russian-Jewish descent and his mother is Argentinian. During his childhood and his adolescence, his idols were David Bowie, Iggy Pop, Bob Dylan, Led Zeppelin, Jimi Hendrix, Téléphone, and Barbara. Raphaël played the piano and the guitar, and did not like school.
In June 2007, Raphaël placed ninth on the French Elle magazine "15 Sexiest Man" list. He has been in a relationship with actress Mélanie Thierry, who appeared in the music video for his single "Caravan". On 24 May 2008, Thierry gave birth to the couple's first child, Roman.
His uncle is Serge Haroche, 2012 Nobel Physics Prize laureate.
In 2000, Raphaël released his first album Hôtel de l'univers (the title is a tribute to Arthur Rimbaud), but it was not until three years later that he enjoyed his first mainstream success with the song Sur la Route, a duo with famous French singer Jean-Louis Aubert, included in his second album La Réalité. With this album, he chose folk music.
A comprehensive list of characters from the Soul series of fighting games produced by Namco.
The Soul series is a weapon-based fighting game franchise developed by Namco Bandai's Project Soul division and consists of eight games: Soul Edge, Soulcalibur, Soulcalibur II, Soulcalibur III, Soulcalibur Legends, Soulcalibur IV, Soulcalibur: Broken Destiny and Soulcalibur V. Set in the 16th century, the plot of the games revolve around Soul Edge, a cursed sword able to possess its wielder and devour souls. Its sprit is called Inferno, and his avatar/host is called Nightmare. Soul Calibur, a holy sword and Soul Edge's antithesis, also has a spirit called Elysium.
With each character, their weapon was decided upon before other aspects were. The design was then built to revolve around it, starting with gender, then physical measurements, and lastly background details. Once established, appearance and movement were fleshed out by the team's concept artist and rendered as a 3D model by a design team that worked solely on the character. The completed model was then animated by a motion capture artist working directly with the team. During this phase the team additionally worked with the story creators, refining the character's own role in the plot as needed throughout development. In the course of the series, two characters have been an exception to the process: Johan Druer, a berserker exclusive to the Soulcalibur Japanese player's guide, and Necrid, a character co-produced with Todd McFarlane that appears in Soulcalibur II.
Raphael, often shortened to Raph, is a fictional character and one of the four protagonists of the Teenage Mutant Ninja Turtles comics and all related media.
In the Mirage/Image Comics, all four turtles wear red bandanas over their eyes; in other versions, Raphael is the only one who retains a red bandana. Raphael wields twin sai as his primary weapon. (In the Next Mutation series, his sai stick together to make a staff-like weapon.) He is generally the most likely to experience extremes of emotion, and is usually depicted as being aggressive, sullen, maddened, and rebellious. The origin of Raphael's anger is not always fully explored, but in some incarnations appears to stem partly from the realization that they are the only creatures of their kind and ultimately alone. He also has a somewhat turbulent relationship with his older brother Leonardo because Leonardo is seen as the group's leader. Raphael is named after the 16th-century Italian painter Raphael. In 2011 Raphael placed 23rd on IGN's Top 100 Comic Book Heroes, a list that did not feature any of his brothers.
a lil´ jam track for shredding we made for you guys. Enjoy! Shot by Tuomas Jaakola & Reetta Lahtinen. http://www.facebook.com/santacruzband http://www.santacruz.fi Archie´s instagram: @archiecruzz Johnny´s instagram: @johnnycruzified NEW SINGLE WE ARE THE ONES TO FALL OUT NOW!!!
This is a lovely Christmas song for children . This is our contribution to the merry Christmas season. A must watch for both adults and children. Karaoke version of the jingle bells song : https://youtu.be/n00ycPEDQWc (SING ALONG) www.youtube.com/kiddiestv www.kiddiestv.com www.facebook.com/kiddiestv PLEASE SUBSCRIBE AT https://www.youtube.com/channel/UCEAXqGOrT6uqN6XqlItD6vA Kiddiestv provides your kids with a great preschool learning experience. Here, its all about learn and fun... Right from alphabets, colors, nursery rhymes to everything for smaller children ! Experience premium quality kids videos ! Fresh videos are uploaded every week, so please SUBSCRIBE so you don't miss out on the new videos ! A few recommendations from Kiddiestv : Wheels on the bus numbers formation http...
Second video from the debut album "Screaming for Adrenaline", out on Spinefarm Records 26.04. (Europe), 30.04. (USA), 06.05. (UK) http://www.santacruz.fi/ Order from Record Shop X http://www.recordshopx.com/artist/santa_cruz/screaming_for_adrenaline/ VIDEO CREW: Director - Tage Rönnqvist Cinematographer - Rasmus Tåg Gaffer - Anders Lönnfeldt Key Grip - Joakim Levälampi Best Boy - Niklas Laurin Lights - Baba Sjöblom, Fritjof Brandt, Frans Westerlund, Frey Hägg MakeUp - Sara Dahlback Still photo - Niklas Laurin Editor - Rasmus Tåg Executive producer - Euge Valovirta Producer - Spinefarm Records, Eva Lingon Oy Ab Ltd. Thanks: Otto Hannuksela, Billnäsin Ruukki, Jari Ilomäki, Valofirma, P.Mutasen Elokuvakonepaja, Bitoz, Kinos rentals, Backline Rental Finland, Mediatrade Oy https://www.spi...
Santa Cruz is a fun city that sits right along the Monterey Bay. The city is known for its boardwalk amusement park, which is one of the only remaining like it in California. The city also has amazing state parks, beautiful beaches and lots more you can explore on a visit. In this list we see some of my favorite places in Santa Cruz, let me know what I left off in the comments. Read more at - https://californiathroughmylens.com/things-to-do-in-santa-cruz/ Chapters: -- 0:00 - Intro 0:25 - Santa Cruz Boardwalk 1:05 - Santa Cruz Wharf 1:37 - West Cliff Drive 2:08 - Natural Bridges State Beach 2:40 - Wilder Ranch State Park 3:15 - Santa Cruz Mission State Historic Park 3:50 - Downtown Santa Cruz 4:26 - The Mystery Spot 4:57 - Henry Cowell Redwoods State Park 5:34 - Roaring Camp Railroad 6:13...
Santa Cruz Travel Guide 2023 - Best Places To Visit In Santa Cruz California USA in 2023 Santa Cruz is a city on central California’s coast. Its long wharf, with eateries and shops, stretches into Monterey Bay. Nearby, the Santa Cruz Beach Boardwalk’s vintage rides include the 1911 Looff Carousel and the Giant Dipper roller coaster. Downtown, Pacific Avenue has vintage clothing stores, cafes and galleries. Along West Cliff Drive, Natural Bridges State Beach is known for its bridge-shaped rock formation. Santa Cruz Travel Guide 2023 - Best Places To Visit In Santa Cruz California USA in 2023 BOSTON TRAVEL GUIDE 2022 https://www.youtube.com/watch?v=Tscsl-8AS2M PARIS TRAVEL GUIDE 2022 - BEST PLACES TO VISIT IN PARIS FRANCE https://youtu.be/KiF9s6kyzPE PERTH TRAVEL GUIDE 2022 - BEST PL...
https://www.facebook.com/SantaCruzBand ▶ iTunes: http://bit.ly/WastedWounded_iTunes ▶ Spotify: http://bit.ly/WastedWounded_Spotify ▶ Deezer: http://bit.ly/WastedWounded_Deezer ▶ Google Play: http://bit.ly/WastedWounded_GooglePlay ORDER THE 7” TRANSPARENT RED VINYL SINGLE FROM: ▶ http://bit.ly/WastedWounded_RecordShopX Directed by Ville Juurikkala Screenplay: Santa Cruz Visual Image: Archie Cruz & Kirsti-Anna Urpa 3D Camera: Lasse Hartikainen GoPro Bullet Time Rig: Riku Leppänen Editor: Toni Tikkanen Edit / Post Production: Marko Voutilainen / Pop Helsinki Thank you: Mr Green, GoPro / Future Retail Oy, YouLapse Oy Produced by MyFilm Oy ℗ & © 2014 Spin-Farm Oy #SantaCruz #WastedAndWounded #Vevo #Metal #VevoOfficial
Just minutes ago ! massive waves hti santa cruz , california usa. Massive waves pound Bay Area coastline HIgh tides and huge swells result in flooding at spots along the Northern California coastline with evacuations in Santa Cruz County. Whipped up waves pounded the Bay Area’s coastline Thursday prompting residents to flee from flooding in the Santa Cruz region and in coastal Marin. The waves offered a dramatic show to locals and , tourists watching 30-foot walls of water break off shore early Thursday. #california #santacruz #usa #flooding #BayArea #stormsurge #europe #hailstorm #snow ► *other videos:* flooding in Hamburg : https://youtu.be/BE3et7iYVcQ storm in gold coast : https://youtu.be/VyVbWva_PmU If you find inappropriate use of copyrighted content (videos, photos an...
The Santa Cruz is Hyundai's compact truck and it receives a new trim for 2024.l On the outside you will discover off-road tires, unique wheels, running boards and sliding bed cover. On the inside you will find a 10.25in infotainment screen & 10.25in digital gauge cluster. Under the is a 2.5L turbocharged inline-4 mated to an 8-speed DCT. Is the 2024 Hyundai Santa Cruz XRT a BETTER truck than a Honda Ridgeline? **Please click the link to get your Raiti's Rides Merch! https://shop.spreadshirt.com/raitisrides/ videography:Steven Flood 🎥
PRESIDENTE DO SANTA CRUZ FALOU SOBRE SAF, POSSIBILIDADE DO SANTA CRUZ JOGAR A SÉRIE D EM 2024. COLABORE COM O PIX: [email protected] ISNCREVA-SE DEIXA O LIKE ATIVA O SINO COMENTA COMPARTILHA
Winkowski kicks through the ceiling with a classic part, paving the way for a killer team section before Rob Pace goes on an onslaught for the ages. 50 years in and Santa Cruz is still screaming. Keep up with Thrasher Magazine here: http://www.thrashermagazine.com http://www.facebook.com/thrashermagazine http://www.instagram.com/thrashermag http://www.twitter.com/thrashermag
Santa Cruz (or Santacruz) may refer to:
Oo-wee how did I lose
Talkin' about a night in Santa Cruz
Oo-wee how did I lose
Talkin' about a night in Santa Cruz
Well I came to coast from L.A.
Just to give a little music to boo me away
Hey J.J. can you play Cocaine
Do After Midnight it's all the same
Oo-wee how did I lose
Talkin' about a night in Santa Cruz
Oo-wee how did I lose
I'll tell you about the night in Santa Cruz
Well we didn't play long it booed too soon
I can't do right no matter what you do
A girl in the crowd, at the finale
Shouted at me had I even turned
Another man left 'cos he didn't stay long
I thought we had played his favorite song
Hey you, pull that weight
A soon as it's cleaned up then I'll fade away
My friends and I hope you're glad to see
Me and friends coming off the street
Play, Richard
I don't mean a man can't lose
Just stay by the night in Santa Cruz
Just stay by the night in Santa Cruz