- published: 29 Jun 2022
- views: 160958128
'+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; })); }); -->
Steve Lacy (July 23, 1934 – June 4, 2004), born Steven Norman Lackritz in New York City, was a jazz saxophonist and composer recognized as one of the important players of soprano saxophone. Coming to prominence in the 1950s as a progressive Dixieland musician, Lacy went on to a long and prolific career. He worked extensively in experimental jazz and to a lesser extent in free improvisation, but Lacy's music was typically melodic and tightly-structured. Lacy also became a highly distinctive composer, with compositions often built out of little more than a single questioning phrase, repeated several times.
The music of Thelonious Monk became a permanent part of Lacy's repertoire after a stint in the pianist's band, with Monk's songs appearing on virtually every Lacy album and concert program; Lacy often partnered with trombonist Roswell Rudd in exploring Monk's work. Beyond Monk, Lacy performed the work of jazz composers such as Charles Mingus, Duke Ellington and Herbie Nichols; unlike many jazz musicians he rarely played standard popular or show tunes.
Steve Lacy (1934–2004) was an American jazz saxophonist and composer.
Steve Lacy may also refer to:
Stephen M. Lacy is an American magazine and media company executive. He is President and CEO of Meredith Corporation, a publicly traded publishing, broadcasting and interactive media firm based in Des Moines, Iowa.
Lacy was born in Shawnee Mission, Kansas, and earned his B.S. and M.S. degrees in Accounting from Kansas State University. At Kansas State, Lacy became a member of Sigma Alpha Epsilon, a social fraternity. He lives in Des Moines with wife Cathy, nearby the Iowa Delta chapter of SAE. They have a son, Paul, and daughter, Mary.
Lacy joined Meredith in 1998 as CFO, before moving on to successive positions as division presidents of Interactive and Integrated Marketing and the Meredith Publishing Group. Lacy was named COO in 2004 and served as interim president of the Meredith Broadcasting Group from 2004 to 2005.
He took over as CEO from retiring president Bill Kerr on July 1, 2006, and has continued expanding Meredith's interactive division, overseeing the acquisition of four online media agencies, including Los Angeles-based design firm O'Grady Meyers and Washington, D.C.-based New Media Strategies.
Steve Lacy is a two-time American Olympic athlete. He was born and raised in McFarland, Wisconsin. He went to college at University of Wisconsin–Madison where he was the first UW runner to break the 4-minute mile.
Download/Stream “Gemini Rights” here: https://stevelacy.lnk.to/geminirights Follow Steve Lacy: https://www.instagram.com/steve.lacy https://tiktok.com/@steve.lacy https://www.facebook.com/stevelacystevelacy https://stevelacys.com Director Julian Klincewicz Creative Director Kwasi Fordjour Video Commissioner Camille Yorrick Executive Producers Kathleen Heffernan, David Airaudi Production Briana Garrido Project manager at Studio Arcade Sophie Ash Production assistant Malik Riley 1st Assistant Director Delvin Williams Director of Photography & Editor Julian Klincewicz 1st AC Jutice Ott, Mckay Todd Loader Bethani Mosher Gaffer Mike Williamson Bb electric Matt Hall Key grip Zied Jendoubi Bb grip Nate Smith Stylist Christina Corso Makeup Alexa Hernandez Art Rachel Bussey BTS stills &...
Pre-Order/Pre-Save "Gemini Rights" here: https://stevelacy.lnk.to/geminirights Follow Steve Lacy: https://www.instagram.com/steve.lacy https://tiktok.com/@steve.lacy https://www.facebook.com/lacystevelacy Follow Fousheé: https://instagram.com/fousheelive https://tiktok.com/@kungfou https://twitter.com/fousheelive https://www.facebook.com/FousheeOfficial Director rubberband Production Company SMUGGLER & LFR Productions Executive Producers Elizabeth Doonan, Luigi Rossi Producer Manny Caston Production Supervisor Gianfranco Svagelj Production Coordinator Sergey Poplavsky 1st Assistant Director Boma Pennebaker Director of Photography Evan Profosky Production Designer Miranda Lorenz Editor Dylan Edwards Colourist Aubrey Woodiwiss Sound Design Raphaël Ajuelos VFX Dara Hamidi Head...
Steve Lacy - Mercury (Official Video) Download/Stream: https://stevelacy.lnk.to/mercury Follow Steve Lacy: https://www.instagram.com/steve.lacy https://tiktok.com/@steve.lacy https://www.facebook.com/lacystevelacy DIRECTOR Rubberband. @_rubberband PRODUCTION COMPANY SMUGGLER & LFR Productions @smugglersite SMUGGLER EXECUTIVE PRODUCER Elizabeth Doonan @elizabethdoonan LFR EXECUTIVE PRODUCER Luigi Rossi @luigirossi.tv PRODUCER Manny Caston @mannycaston PRODUCTION SUPERVISOR Gianfranco Svagelj @svagelj PRODUCTION COORDINATOR Sergey Poplavsky @jyravlik1st ASSISTANT DIRECTOR Boma Pennebaker @bomap DIRECTOR OF PHOTOGRAPHY Evan Prosofsky @evanprofosky PRODUCTION DESIGNER Miranda Lorenz @mirandalorenz EDITOR Dylan Edwards @dylanj_edwards COLOURIST Aubrey Woodiwiss @aubreycolor SOUND...
From "Steve Lacy’s Demo," out now. https://soundcloud.com/steevlacy https://twitter.com/stevelacys https://www.instagram.com/steve.lacy/ For more new music, follow my weekly Spotify playlist "Compact Cassette" (https://open.spotify.com/user/daviddeanburkhart/playlist/6lzG8MsMBoVEpulGS747M6) Me: https://www.facebook.com/daviddeanburkhart https://open.spotify.com/user/daviddeanburkhart https://twitter.com/DavidDBurkhart Lyrics: Something bad is 'bout to happen to me I don't know it but I feel it comin' Might be so sad, might leave my nose running I just hope she don't wanna leave me Don't you give me up, please don't give up Honey, I belong, with you, and only you, baby Only you, my girl, only you, babe Only you, darling, only you, babe Only you, my girl, only you, babe Only you, darlin...
Tracks 2 and 3 off of STEVE LACY'S DEMO. https://awal.lnk.to/SLDemo https://soundcloud.com/steevlacy/sets/steve-lacys-demo
Download/Stream “Gemini Rights” here: https://stevelacy.lnk.to/geminirights Follow Steve Lacy: https://www.instagram.com/steve.lacy https://tiktok.com/@steve.lacy https://www.facebook.com/lacystevelacy https://stevelacys.com #SteveLacy #Static #GeminiRights
Support Steve Lacy Spotify https://open.spotify.com/artist/57vWImR43h4CaDao012Ofp?si=nGrw4KMNRlaqYBlnn9SGGA Instagram https://www.instagram.com/steve.lacy/?hl=en-gb Twitter https://twitter.com/realstevelacyy Facebook https://en-gb.facebook.com/stevelacystevelacy Tracklist 0:00 Static 2:36 Helmet 5:58 Mercury 10:54 Buttons 13:59 Bad Habit 17:52 2Gether (Enterlude) 18:42 Cody Freestyle 22:42 Amber 25:36 Sunshine (feat. Fousheé) 30:30 Give You the World
In this video, I breakdown the events unfolding on Steve Lacy's recent tour and what it means for his career and the state of the music industry. Background Music (Copyright Free): https://www.youtube.com/watch?v=0VDUyU6SQRU https://www.youtube.com/watch?v=jhHQSDIjHgs https://www.youtube.com/watch?v=0EHPYjCU-sE Steve Lacy, TikTok, Steve Lacy Camera, disposable camera, bad habits, I bite my tongue, static, the music industry
Provided to YouTube by L-M Records/RCA Records Static · Steve Lacy Gemini Rights ℗ 2022 L-M Records, under license to RCA Records, a division of Sony Music Entertainment Released on: 2022-07-14 Keyboards: Ely Rise Composer, Lyricist: John Carroll Kirby Engineer: Karl Wingate Mixing Engineer: Neal Pogue Mastering Engineer: Mike Bozzi Auto-generated by YouTube.
Steve Lacy - Dark Red (Lyrics) ✅ Follow our Spotify playlist and Instagram: Top New Songs Today ✔ http://bit.do/SpotiToday Our Instagram ✔ https://www.instagram.com/lbobrothers/?hl=en ✅ follow Stive https://soundcloud.com/steevlacy https://twitter.com/stevelacys https://www.instagram.com/steve.lacy/ 📜 Lyrics: Something bad is 'bout to happen to me I don't know it but I feel it comin' Might be so sad, might leave my nose running I just hope she don't wanna leave me Don't you give me up, please don't give up Honey, I belong, with you, and only you, baby Only you, my girl, only you, babe Only you, darling, only you, babe Only you, my girl, only you, babe Only you, darling, only you Something bad is 'bout to happen to me Why I feel this way I don't know maybe I think of her so much it ...
Pandelis Karayorgis Trio Pandelis Karayorgis, piano Nate McBride, bass Randy Peterson, drums December 3, 2016 Third Life Studio, Somerville, MA
Jorrit Dijkstra -- altsax Pandelis Karayorgis -- piano http://www.zjft.nl
Papa's Midnite Hop (Steve Lacy) MATCHBOX Jorrit Dijkstra, alto sax Pandelis Karayorgis, piano Nate McBride, bass Curt Newton, drums At the Lilypad, Cambridge, MA March 5, 2014
Trickles by Steve Lacy, performed by The Whammies The Whammies: Jorrit Dijkstra - alto sax, lyricon, analog electronics Jeb Bishop - trombone Pandelis Karayorgis - piano Nate McBride - bass Han Bennink - drums Mary Oliver - violin, viola From a live performance at the Lilypad, Cambridge, MA on January 26, 2013. http://karayorgis.com/Pages/Projects/The_Whammies.html
"Disambiguation" by P. Karayorgis: Pandelis Karayorgis, piano - Nate McBride, bass at Zeitgeist Gallery, Cambridge, Mass., 2003
Revolutionary Suicide (by Steve Lacy) THE WHAMMIES Jorrit Dijkstra, alto sax Mary Oliver, violin, viola Jeb Bishop, trombone Pandelis Karayorgis, piano Jason Roebke, bass Han Bennink, drums At Artacts '14, St. Johann in Tirol March 15, 2014 video originally posted by Muzica de Vest https://www.youtube.com/user/MuzicaDeVest
Cliff Trio Pandelis Karayorgis, piano Damon Smith, bass Eric Rosenthal, drums Lilypad, Cambridge, MA - March 26, 2019 CD available through Driff Records: http://driffrecords.com/ This track is part of the CD Precipice, available through Bandcamp: https://pandeliskarayorgis.bandcamp.com/album/precipice Earlier CD, Cliff: https://pandeliskarayorgis.bandcamp.com/album/cliff
Han Bennink, drums - Jorrit Dijkstra, alto sax - Pandelis Karayorgis, piano at Killian Hall, MIT (Cambridge, MA). October 27, 2009.
Provided to YouTube by CDBaby Plateau · Pandelis Karayorgis Cliffpools ℗ 2020 Pandelis Karayorgis Released on: 2020-02-12 Auto-generated by YouTube.
Steve Lacy (July 23, 1934 – June 4, 2004), born Steven Norman Lackritz in New York City, was a jazz saxophonist and composer recognized as one of the important players of soprano saxophone. Coming to prominence in the 1950s as a progressive Dixieland musician, Lacy went on to a long and prolific career. He worked extensively in experimental jazz and to a lesser extent in free improvisation, but Lacy's music was typically melodic and tightly-structured. Lacy also became a highly distinctive composer, with compositions often built out of little more than a single questioning phrase, repeated several times.
The music of Thelonious Monk became a permanent part of Lacy's repertoire after a stint in the pianist's band, with Monk's songs appearing on virtually every Lacy album and concert program; Lacy often partnered with trombonist Roswell Rudd in exploring Monk's work. Beyond Monk, Lacy performed the work of jazz composers such as Charles Mingus, Duke Ellington and Herbie Nichols; unlike many jazz musicians he rarely played standard popular or show tunes.
Skin tight
Fits me like a glove
Your love is
Skin tight
Yes indeed it is
Your love is
Alright
Anytime of day or night
Is alright
Skin tight
Skin tight
Fits me like a glove
Your love is skin tight
Only you can keep me going
All night
Love me till the cows come home
It's alright
Skin tight
Skin tight
Fits me like a glove
Your love is
Skin tight
Yes indeed it is
Your love is
Alright
Any time of day or night
Is alright
Skin tight