- published: 01 Oct 2007
- views: 5247559
'+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; })); }); -->
Marcia Llyneth Griffiths CD (born 23 November 1949) is a successful Jamaican female singer, also called the "Queen of Reggae". One reviewer described her by noting "she is known primarily for her strong, smooth-as-mousse love songs and captivating live performances".
Born in West Kingston, Jamaica, Griffiths started her career in 1964, performing on stage with Byron Lee and the Dragonaires at the behest of Phillip James of The Blues Busters, who had heard her singing in her home neighbourhood. Her performance was sufficiently impressive that the following day Ronnie Nasralla and Clement Dodd both offered her recording contracts. She chose to record for Dodd's Studio One label, where she recorded a series of duets with male singers such as Tony Gregory ("You're Mine"), Bob Marley ("Oh My Darling"), Jeff Dixon ("Words"), and Bob Andy ("Always Together"), with whom she would have a relationship lasting several years. In 1968 she had her first success as a solo artist, with "Feel Like Jumping", which like her other early Studio One solo hits (including "Truly" and "Melody Life"), were written by Andy.
The Way I Feel may refer to:
The Way I Feel is the second studio album by Canadian singer-songwriter Gordon Lightfoot, originally released in 1967 on the United Artists label.
In his Allmusic review, critic Richie Unterberger praised the album, writing "The songs weren't quite as impressive as his first batch, but they were still very good, highlighted by the epic "Canadian Railroad Trilogy" and an electrified remake of "The Way I Feel."
All songs written by Gordon Lightfoot.
Cover photography by Barry Feinstein
The Way I Feel is an album by jazz and R&B guitarist Phil Upchurch recorded in 1969 and released on the Cadet label.
Allmusic reviewed the album awarding it 3 stars.
All compositions by Phil Upchurch except as indicated
reggae version of All My Life
I am so glad that this Promo came out so that I can share it with my fans
Request Your Old Favourite Dancehall/Reggae Tunes. Subscribe, Comment, Rate & Add to Favourite. Thank You. For All The Latest Dancehall/Reggae Tracks Check Out http://www.youtube.com/user/kez876
https://www.REGGAEVILLE.com produced by Silly Walks Discotheque Director: Til Maier Editor: Felix Zenker Post Production: Paul's Boutique Graphics: Henning Weskamp/ Typeholics taken from the album "Smile Jamaica" Get the album: http://geni.us/smilejamaica Get the single: http://geni.us/HoldingYouClose Stream the album:https://open.spotify.com/album/4W2jk23Uovrq2YZGtoXzB2 Stream the song: https://open.spotify.com/track/13p4NUncru4RlJsk1OJJNJ Original song produced by Paul Zasky & Robbie Ost for Dubble Standard at Go East Studios, Vienna. Remixed by Silly Walks Discotheque & Jr. Blender. Mixed by Philip „Jr. Blender“ Meckseper, overdubs by Jo von H. Instruments, Programming: Philip „Jr. Blender“ Meckseper. Flute: Johannes „Jo von H“ Hirt. Strings arrangement: Johannes „Jo von H“ Hir...
Marcia Griffiths Live @ Reggae Geel Festival Belgium 2019 Follow our page for more High Quality Reggae Concerts https://www.youtube.com/channel/UC2WfYswzAHqXUBCHSJ5GRLw/videos Filmed & Edited by: Team Reggae Live Concerts Front Cams By Remon Janssen & Nina Vermeulen Reggae Geel Festivals Collection https://www.youtube.com/playlist?list=PLLeb__eZCpbPhPb3xDfsuJXBMvnpXM_rD Rastaplas Festival https://www.youtube.com/playlist?list=PLLeb__eZCpbPo3qInCRNIvIrmM7Sv4oUh Lucky Dube Collection https://www.youtube.com/watch?v=07qas4yMEwA&list=PLLeb__eZCpbPeIcrALK0qIFpuzFbTjVUr Reggae Central / Popcentrale / Bibelot https://www.youtube.com/watch?v=Wi39mj4IHoo&list=PLLeb__eZCpbNOEfpSALZ4-Snp62yga0jH Reggae Lake Festival 2018 https://www.youtube.com/playlist?list=PLLeb__eZCpbMEBn3hKwOmzMhcs...
Marcia Griffiths singing Melody of Life. This video is for all to enjoy
Jet Star Music is pleased to present a 90s reggae mix of Marcia Griffith's greatest lovers rock, dancehall and reggae hits including: 00:00 I Shall Sing 03:36 Fire Burning 07:09 My Favourite Past Time – With Cutty Ranks 14:12 A Girl & A Beer 18:18 Desperate Lover 21:15 All I Need Is Love 24:53 I Wanna Dance With You 25:53 Land Of Love 31:39 Trenchtown Rock 35:19 Check It Out 38:22 Blue Skies 42:02 Let Me Be Yours Until Tommorow 46:03 Roots Rocking 49:57 Stepping Out Of Babylon 53:49 Everybody Needs Love 57:23 No I Wont 1:03:58 Time Will Tell 1:07:25 Love Is A Treasure 1:10:45 Love Is Automatic 1:14:09 I Need To Know 1:17:11 Mellow Mood 1:20:38 True Love 1:24:07 Feel Like Jumping You can stream and download all these fyah tunes from the Queen of Reggae on our brand new album, 'Reggae Lege...
Marcia Griffiths' (formely of Bob Marley's backing vocalists, The I-Threes) song on the Answer Riddim. She's been in the business for four decades!!
by Janan Cain (Author, Illustrator) Publisher : Parenting Press Helping children identify and express their feelings in a positive manner is important for their social-emotional learning, developing empathy, and building resilience. Feelings are neither good nor bad, they simply are. Kids need words to name their feelings, just as they need words to name all things in their world. Support the author and publisher take your copies and let's read together! You can purchase this book on Amazon : https://www.amazon.com/Way-I-Feel-Janan-Cain/dp/1641604980/ref=sr_1_1?crid=322UI8N1T1K9M&dib=eyJ2IjoiMSJ9.ZAzeQckPcdANvdE6Wk5W5zEgtu-A3jq9zcr3PipLWjh_K-Xdx17NlkQDgWr3fcWBeKSdJ4-x7qsxrzHHOZ6ILOGIqFE-gWgJjMyf6Kn3BUa0jyyu_YKovfBaya9341a4Kv8SmtbHS3degOXBSuiYfJJx5dSpihr-8CdhfXX_R1swHo_1vPVY5RlUC50CIV...
🍄We all experience different feelings at different times. Kids need words to express themselves and this book shows them different feelings and names those feelings. 🙃Please join us for a kid's book read-aloud of The Way I Feel by Jana Cain read by Miss Jill. Closed Captions #readaloud #storytime #kidsbooksonline ______________________________________________________________________ Click here to purchase and see all of my read-aloud books and support this channel and authors. https://amazon.com/shop/toadstoolsandfairydust My Amazon store page is where you will see tons of my favorite books and series for ALL ages! Have fun! Thank you a ton for watching my videos! Don't forget to subscribe to stay up-to-date on my latest releases. Subscribe here: https://bit.ly/storytimesub
Sad...happy...angry...excited! We all have so many emotions! How are YOU feeling today? Click here to hold this book in your hands: https://amzn.to/46Fq8HD ⇨ If you liked this video and want to say thanks, leave a tip at https://ko-fi.com/thestoryrug ⇨ Don't forget to support the authors and illustrators of these wonderful books: buy from your local bookstore, or borrow from your library! ⇨ Consider subscribing so you'll never miss a new story: http://bit.ly/subtostoryrug
#Thewaywefeel #FlokeRose, #GFatt
The official ‘The Way I Feel’ music video. Listen to ‘The Way I Feel’ here: https://keane.lnk.to/TheWayIFeelID Listen to Cause & Effect the deluxe album by Keane here: https://keane.lnk.to/CauseAndEffectID Shop the new ‘Hopes And Fears 20’ box set, vinyl & CD: https://Keane.lnk.to/HAF20ID Shop ‘Hopes And Fears 20’ merch:https://Keane.lnk.to/HFShopID Listen to ‘Hopes And Fears 20’: https://Keane.lnk.to/K20listenID Stream the music of Keane here: https://keane.lnk.to/listenID Explore the Keane Store: https://shop.keanemusic.com/ Shop Keane merch here: https://umc.lnk.to/KeanestoreYP Subscribe to Keane on YouTube: https://Keane.lnk.to/youtubesubID Follow Keane online: Facebook: https://Keane.lnk.to/FacebookID Twitter: https://Keane.lnk.to/TwitterID Instagram: https://Keane.lnk.to/...
Provided to YouTube by Es Paranza The Way I Feel (2006 Remaster) · Robert Plant Now and Zen ℗ 2006 Atlantic Recording Corporation for the United States and WEA International Inc. for the world outside of the United States Remastering Engineer: Bill Inglot Drums: Chris Blackwell Remastering Engineer: Dan Hersch Engineer: Dave Barrett Guitar: Doug Boyle Engineer: Johnathan Dee Backing Vocals: Kirsty Maccoll Backing Vocals: Marie Pierre Engineer: Martin Russell Engineer: Michael Gregovich Keyboards: Phil Johnstone Producer: Phil Johnstone Bass Guitar: Phil Scragg Engineer: Rob Bozas Producer: Robert Plant Lead Vocals: Robert Plant Engineer: Tim Burrell Producer: Tim Palmer Backing Vocals: Toni Halliday Writer: Doug Boyle Writer: Phil Johnstone Writer: Robert Plant Auto-generated b...
Music video by 12 Stones performing The Way I Feel. (C) 2002 Wind-up Records, LLC
The ‘The Way I Feel’ lyric video. Listen to ‘The Way I Feel’ here: https://keane.lnk.to/TheWayIFeelID Listen to Cause & Effect the deluxe album by Keane here: https://keane.lnk.to/CauseAndEffectID Stream the music of Keane here: https://keane.lnk.to/listenID Explore the Keane Store: https://shop.keanemusic.com/ Shop Keane merch here: https://umc.lnk.to/KeanestoreYP Subscribe to Keane on YouTube: https://Keane.lnk.to/youtubesubID Follow Keane online: Facebook: https://Keane.lnk.to/FacebookID Twitter: https://Keane.lnk.to/TwitterID Instagram: https://Keane.lnk.to/InstagramID Spotify: https://Keane.lnk.to/SpotifyID Apple Music: https://Keane.lnk.to/AppleMusicID Soundcloud: https://Keane.lnk.to/SoundcloudID Welcome to the official Keane channel. Subscribe today for a vast video co...
Website: https://kinskigallo.com/ Director: Matthew Kershaw @Badmashaivfx IG: https://www.instagram.com/kinski_gallo/ Spotify: https://open.spotify.com/artist/4yPZjqKceWLuW5qE7Ondct?si=gDKkKHWLQwKdxSj3pAQ18A Soundcloud: https://soundcloud.com/kinskigallo The Way I Feel for You (Abrázame) You should know that time will change me But it’ll never change the way I feel for u. Abrázame hold me tight... Abrázame/don’t let me go/dance all night I wrote this verse for you Whisper like the leaves of blue heaven’s vibin’ playing symphonies of fire I wake up next to you I’m dream of rain and dew tessellations Undulate and hypnotize a symphony of you where the garden flowers bloom intoxicated a pilgrim of desire in the stillness of the night the moon reflecting our divine constellations an...
Provided to YouTube by TuneCore The Way I Feel · My Heartbrk The Way I Feel ℗ 2023 My Heartbrk Released on: 2023-11-03 Auto-generated by YouTube.
Marcia Llyneth Griffiths CD (born 23 November 1949) is a successful Jamaican female singer, also called the "Queen of Reggae". One reviewer described her by noting "she is known primarily for her strong, smooth-as-mousse love songs and captivating live performances".
Born in West Kingston, Jamaica, Griffiths started her career in 1964, performing on stage with Byron Lee and the Dragonaires at the behest of Phillip James of The Blues Busters, who had heard her singing in her home neighbourhood. Her performance was sufficiently impressive that the following day Ronnie Nasralla and Clement Dodd both offered her recording contracts. She chose to record for Dodd's Studio One label, where she recorded a series of duets with male singers such as Tony Gregory ("You're Mine"), Bob Marley ("Oh My Darling"), Jeff Dixon ("Words"), and Bob Andy ("Always Together"), with whom she would have a relationship lasting several years. In 1968 she had her first success as a solo artist, with "Feel Like Jumping", which like her other early Studio One solo hits (including "Truly" and "Melody Life"), were written by Andy.
Feel the cold wind blowing winter's coming on
'Tis the season, so they say
If you need help believing 'cause your spirit ain't too strong
Hold my hand, we'll push that cloud away
And put a little holiday in your heart
It'll put a little shuffle in your step
Give you a song that you can sing
With a melody you can't forget
And if you wanna join in a little harmony
To keep the world from tearin' apart
Well, you know where to look
Yeah, you gotta put a little holiday in your heart
There's a man on the corner who doesn't have a name
People pass and turn their heads away
But to share a simple kindness would set there heart aflame
And you'll get more than you'll ever give away
So, put a little holiday in your heart
It'll put a little shuffle in your step
Give you a song that you can sing
With a melody you can't forget
And if you wanna join in a little harmony
To keep the world from tearin' apart
Well, you know where to look
Yeah, you gotta put a little holiday in your heart
It starts with you, it starts with me
That ain't no stranger, he's family
And it don't matter if we agree
It all comes down to love
So, put a little holiday in your heart
It'll put a little shuffle in your step
Give you a song that you can sing
With a melody you can't forget
And if you wanna join in a little harmony
To keep the world from tearin' apart
Well, you know where to look
Yeah, you gotta put a little holiday in your heart
So, put a little holiday in your heart
It'll put a little shuffle in your step
Give you a song that you can sing
With a melody you can't forget
And if you wanna join in a little harmony
To keep the world from tearin' apart
Well, you know where to look
Yeah, you gotta put a little holiday in your heart
Well, you know where to look