- published: 22 Mar 2023
- views: 2163767
'+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; })); }); -->
Natalie Diane Grant (born December 21, 1971) is a singer-songwriter of contemporary Christian music. She received the Gospel Music Association's Dove Award for Female Vocalist of the Year four consecutive years (2006, 2007, 2008 and 2009), and again in 2012. She was also nominated for a Grammy in 2012 for her performance of "Alive". Her signature song is "Held".
Natalie Grant first started in contemporary Christian music when she auditioned for the traveling music group Truth. Later she moved to Nashville, Tennessee to pursue her solo career. There she signed with Benson Records in 1997 and began working on her self-titled debut which was released in 1999. She left Benson for Pamplin Music soon after and released the album Stronger in 2001. She then ended up at Curb Records after Pamplin folded, where she has made five solo albums as of 2012, starting with Deeper Life in 2003. Awaken was her breakthrough success, in 2005. It was RIAA certified gold. It was followed by Love Revolution on August 24, 2010 and Hurricane on October 15, 2013.
Natalie Grant is the self-titled debut album by Natalie Grant released on April 14, 1999.
Dolly Buster, officially Nora Baumberger (born October 23, 1969 as Nora Dvořáková), is a film producer and director, actress, author and a former adult film actress.
Buster has starred in over one hundred X-rated European movies. She is also the author of a successful series of crime-novels about a German porn-star-turned-amateur-sleuth.
She appeared in the German version of I'm a Celebrity... Get Me Out of Here!.
In 2004, she attempted to obtain a seat in the European parliament as a candidate of a minority Czech political party. The party got 0.71% of votes.
She currently lives with her husband in Wesel, Germany, also indulging in painting and drawing, having taken life-drawing classes from Arnim Tölke at the Kunstakademie Düsseldorf.
She was voted Germany's "hottest porn star" at the age of 39. She has also won several Venus Awards, including a Lifetime Achievement Award in 2000 and a Special Jury Award in 2003.
"You Will be Found feat. Cory Asbury": https://NatalieGrant.lnk.to/YouWillBeFound SUBSRIBE to Natalie's channel and follow her on socials at: https://www.instagram.com/nataliegrant/ https://www.facebook.com/nataliegrantmusic https://twitter.com/nataliegrant Official Website: https://www.nataliegrant.com/
Click here to pre-order my new album 'No Stranger': https://NatalieGrant.lnk.to/NoStranger SUBSRIBE to Natalie's channel and follow her on socials at: https://www.instagram.com/nataliegrant/ https://www.facebook.com/nataliegrantmusic https://twitter.com/nataliegrant Official Website: https://www.nataliegrant.com/
Click here to pre-order my new album 'Seasons: https://NatalieGrant.lnk.to/Seasons SUBSRIBE to Natalie's channel and follow her on socials at: https://www.instagram.com/nataliegrant/ https://www.facebook.com/nataliegrantmusic https://twitter.com/nataliegrant Official Website: https://www.nataliegrant.com/
"My Weapon" - Recorded live at AIR Lyndhurst Hall in London, UK with the London Studio Orchestra. Click here to pre-order my new album 'No Stranger,' featuring "My Weapon: https://NatalieGrant.lnk.to/NoStranger Lyrics: Let every lie be silenced And all depression cease Let every dark assignment Bow down at Jesus’ feet Let every curse be broken Let every storm be tamed And all that come against us Be bound in Jesus’ name Your presence is my greatest weapon Pushing back the darkness Breaking every chain My worship opens up the heavens Crushing every stronghold When I speak Your name Your presence is my weapon Your presence is my weapon Your strength will not be shaken Your love will not back down Death has been defeated What can stop us now I hold on to what You’ve spoken You said th...
Click here to stream/download "We Will Stand (feat. Tauren Wells, Jekalyn Carr, & CAIN)": https://NatalieGrant.lnk.to/WeWillStand SUBSRIBE to Natalie's channel and follow her on socials at: https://www.instagram.com/nataliegrant/ https://www.facebook.com/nataliegrantmusic https://twitter.com/nataliegrant Official Website: https://www.nataliegrant.com/
Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time
Official Music Video for "Sing Hallelujah" feat. Natalie Grant was recorded live in NYC. It is featured on my new album, Cover the Earth, released on 6.2.2023. Follow Naomi: Instagram - https://www.instagram.com/naomiraine/ Tik Tok - https://www.tiktok.com/@naomiraineofficial Facebook - https://www.facebook.com/NaomiRaineMusic Twitter - https://twitter.com/naomiraine YouTube: @TheNaomiRaine Official Website - https://shor.by/naomiraine Verse It's not my worship that makes you worthy God you were always good With or without my song you're still holy God you are always good I can’t help Hallelujah I've got to let it out You’ve never needed my voice to cry holy Still I get to say you're good Chorus With my whole hear t Sing Halle Sing Hallelujah I get to sing it forever L...
Official Video for "Gratitude / Worthy of it All / You're Worthy of My Praise " featuring Brandon Lake, Natalie Grant & Mav City Gospel Choir. “Gratitude / Worthy of it All / You're Worthy of My Praise” was written by Brandon Lake, Dante Bowe, Benjamin Hastings, David Brymer, Ryan Hall & David Ruis. It is from Maverick City Music’s newest Christmas album, A Very Maverick Christmas, available now! A Very Maverick Christmas is available on all streaming platforms! Streaming link: https://orcd.co/avmc Follow us on socials: Instagram: https://www.instagram.com/maverickcitymusic/ Facebook - https://www.facebook.com/MaverickCityMusic Twitter - https://twitter.com/MavCityMusic Official Website- https://www.maverickcitymusic.com/ Lyrics Verse 1 All my words fall short I got nothing new H...
The Mission - 11 "True Faith" Acts 8:9-25 Songs Sung : All Hail the Power of Jesus Name - Public Domain I Speak Jesus - Charity Gayle Your Great Name - Natalie Grant More Love, More Power - Jude Del Hierro Spirit of the Living God, Fall Afresh - Paul Armstrong CCLI#1725883
Click here to stream and download the song: https://smarturl.it/RelentlessNG Subscribe to follow Natalie at: https://www.instagram.com/nataliegrant/ https://www.facebook.com/nataliegrantmusic https://twitter.com/nataliegrant http://www.nataliegrant.com/
Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time
NATALIE GRANT. BE ONE ALBUM We don't feel ready We don't feel steady Question what we really have to give Stay where it's safer Claim faith, but waiver Is this how we really meant to live? We pray but never move We say but never do It's time to get our hands dirty Be love there's a whole lot of hurting Calling all hearts Calling all hands Calling all feet to take a stand Why sit around and wait for a miracle to come When we can be one When we can be one When we can be one A little somethin' Might feel like nothin' But in His hands it's all we'll ever need To speak life to the broken Watch the blind eyes open It's who He's calling you and me To be It's time to get our hands dirty Be love there's a whole lot of hurting Calling all hearts Calling all ha...
Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time
"You Will be Found feat. Cory Asbury": https://NatalieGrant.lnk.to/YouWillBeFound SUBSRIBE to Natalie's channel and follow her on socials at: https://www.instagram.com/nataliegrant/ https://www.facebook.com/nataliegrantmusic https://twitter.com/nataliegrant Official Website: https://www.nataliegrant.com/
Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time Best Playlist Of Natalie Grant Gospel Songs 2022🎹 Most Popular Natalie Grant Songs Of All Time
"My Weapon" - Recorded live at AIR Lyndhurst Hall in London, UK with the London Studio Orchestra. Click here to pre-order my new album 'No Stranger,' featuring "My Weapon: https://NatalieGrant.lnk.to/NoStranger Lyrics: Let every lie be silenced And all depression cease Let every dark assignment Bow down at Jesus’ feet Let every curse be broken Let every storm be tamed And all that come against us Be bound in Jesus’ name Your presence is my greatest weapon Pushing back the darkness Breaking every chain My worship opens up the heavens Crushing every stronghold When I speak Your name Your presence is my weapon Your presence is my weapon Your strength will not be shaken Your love will not back down Death has been defeated What can stop us now I hold on to what You’ve spoken You said th...
Click here to pre-order my new album 'No Stranger': https://NatalieGrant.lnk.to/NoStranger SUBSRIBE to Natalie's channel and follow her on socials at: https://www.instagram.com/nataliegrant/ https://www.facebook.com/nataliegrantmusic https://twitter.com/nataliegrant Official Website: https://www.nataliegrant.com/
Official Performance Video for “Jesus What A Friend” by Tasha Cobbs Leonard featuring Natalie Grant Brand New Album 'Hymns' Available Now Get “Jesus What A Friend (feat. Natalie Grant)” and listen to ‘Hymns’ here: https://TCLeonard.lnk.to/hymnsID Listen to the more from Tasha Cobbs Leonard: https://TCLeonard.lnk.to/ytplaylistID Subscribe to Tasha Cobbs Leonard’s Official YouTube Channel: https://TCLeonard.lnk.to/SubscribeYD Follow Tasha: TikTok: https://www.tiktok.com/@tashacobbsleonard Instagram: https://www.instagram.com/tashacobbsleonard/ Twitter: https://twitter.com/tashacobbs Facebook: https://www.facebook.com/OfficialTashaCobbs Website: http://www.tashacobbsleonard.com/ LYRICS: What a friend we have in Jesus What a friend we have in Him Ever faithful to the end Jesus, wh...
One of my favorite songs from Natalie's new album "Be One"
Click here to pre-order my new album 'No Stranger': https://NatalieGrant.lnk.to/NoStranger SUBSRIBE to Natalie's channel and follow her on socials at: https://www.instagram.com/nataliegrant/ https://www.facebook.com/nataliegrantmusic https://twitter.com/nataliegrant Official Website: https://www.nataliegrant.com/
Die kennen sie nicht? Oh, wir glauben schon! Blonde Mähne, XXL-Busen und volle Wangen. Dass Dolly Buster sich gerne unters Messer legt und an der ein oder anderen Stelle an ihrem Körper nachgeholfen hat, dürfte klar sein.
Her natural beauty was exceptional. But I guess she didn't realize it.
Funny Interview
Live Dance Haus 1995 (Germany)
Ein grosses Genital!
Záznam z vystoupení při oslavách u Habakuka. Historická perla nalezená v archivu PPSPJC Semily. Po zásahu mravnostního cenzora bylo video zkráceno.
Natalie Diane Grant (born December 21, 1971) is a singer-songwriter of contemporary Christian music. She received the Gospel Music Association's Dove Award for Female Vocalist of the Year four consecutive years (2006, 2007, 2008 and 2009), and again in 2012. She was also nominated for a Grammy in 2012 for her performance of "Alive". Her signature song is "Held".
Natalie Grant first started in contemporary Christian music when she auditioned for the traveling music group Truth. Later she moved to Nashville, Tennessee to pursue her solo career. There she signed with Benson Records in 1997 and began working on her self-titled debut which was released in 1999. She left Benson for Pamplin Music soon after and released the album Stronger in 2001. She then ended up at Curb Records after Pamplin folded, where she has made five solo albums as of 2012, starting with Deeper Life in 2003. Awaken was her breakthrough success, in 2005. It was RIAA certified gold. It was followed by Love Revolution on August 24, 2010 and Hurricane on October 15, 2013.
It’s always been a mystery to me
How two hearts can come together
And love can last forever
But now that I have found you, I believe
That a miracle has come
When God sends the perfect one
Now gone are all my questions about why
And I’ve never been so sure of anything in my life
[Chorus:]
I wonder what God was thinking
When He created you
I wonder if He knew everything I would need
Because He made all my dreams come true
When God made you
He must have been thinking about me
I promise that wherever you may go
Wherever life may lead you
With all my heart I’ll be there too
From this moment on I want you to know
I’ll let nothing come between us
And I will love the ones you love
Now gone are all my questions about why
And I have never been so sure of anything in my life
[Chorus:]
I wonder what God was thinking
When He created you
I wonder if He knew everything I would need
Because He made all my dreams come true
When God made you
He must have been thinking about me
[Bridge:]
He made the sun
He made the moon
To harmonize in perfect tune
One can’t move without the other
They just have to be together
And that is why I know it’s true
You’re for me and I’m for you
Cause my world just can’t be right
Without you in my life
[Chorus:]
I wonder what God was thinking
When He created you
I wonder if He knew everything I would need
Because He made all my dreams come true
He must have heard every prayer I’ve been praying
Yes He knew everything I would need
When God made you
When dreams come true
When God made you He must have been thinking about me