- published: 25 Sep 2019
- views: 6321826
'+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; })); }); -->
The Taj Mahal (/ˌtɑːdʒ məˈhɑːl/, more often /ˈtɑːʒ/; Persian for "Crown of Palaces", pronounced [ˈt̪aːdʒ mɛˈɦɛl]) is an ivory-white marble mausoleum on the south bank of the Yamuna river in the Indian city of Agra. It was commissioned in 1632 by the Mughal emperor, Shah Jahan (reigned 1628–1658), to house the tomb of his favorite wife, Mumtaz Mahal. The tomb is the centrepiece of a 42-acre complex, which includes a mosque and a guest house, and is set in formal gardens bounded on three sides by a crenellated wall.
Construction of the mausoleum was essentially completed in 1643 but work continued on other phases of the project for another 10 years. The Taj Mahal complex is believed to have been completed in its entirety in 1653 at a cost estimated at the time to be around 32 million rupees, which in 2015 would be approximately 52.8 billion rupees (US$827 million). The construction project employed some 20,000 artisans under the guidance of a board of architects led by the court architect to the emperor, Ustad Ahmad Lahauri.
Henry Saint Clair Fredericks (born May 17, 1942), who uses the stage name Taj Mahal, is an American blues musician. He often incorporates elements of world music into his works. A self-taught singer-songwriter and film composer who plays the guitar, piano, banjo and harmonica (among many other instruments), Mahal has done much to reshape the definition and scope of blues music over the course of his almost 50-year career by fusing it with nontraditional forms, including sounds from the Caribbean, Africa and the South Pacific.
Born Henry Saint Clair Fredericks, Jr. on May 17, 1942 in Harlem, New York, Mahal grew up in Springfield, Massachusetts. Raised in a musical environment, his mother was a member of a local gospel choir and his father was a West Indian jazz arranger and piano player. His family owned a shortwave radio which received music broadcasts from around the world, exposing him at an early age to world music. Early in childhood he recognized the stark differences between the popular music of his day and the music that was played in his home. He also became interested in jazz, enjoying the works of musicians such as Charles Mingus, Thelonious Monk and Milt Jackson. His parents came of age during the Harlem Renaissance, instilling in their son a sense of pride in his West Indian and African ancestry through their stories.
Taj Mahal is a 1999 Tamil film directed by Bharathiraja. The film featured the director's son, Manoj, alongside fellow debutant Riya Sen in the lead roles, with an ensemble supporting cast including Revathi, Radhika and Ranjitha. The film's story was written by Mani Ratnam while music was composed by A.R.Rahman and Madhu Ambat handled the camera. The story of the film revolved around two clashing communities and two lovers caught in the vortex of their rivalry. The film fared poorly at the 1999 Deepavali releases box office.
Thiruppaachi and Sengulam are neighboring villages with a history of enmity between them. Maayan (Manoj) and Machakanni (Riya Sen) meet on the day of her engagement and its love at first sight. Her marriage itself gets called off when the groom and his family insult Machakanni's family and her romance with Maayan continues. But when her brother finds out about him, all hell breaks loose. The turned-down bridegroom is still itching for revenge and figuring out that the only way to extract it is to marry Machakanni, he pleads for forgiveness and succeeds in melting her brother's heart. The marriage is finalised but Maayan's friends swear to unite the star-crossed lovers. There is also a subplot of Maayan's aunt(Radhika) trying to get her daughter married off to Maayan.
United Breweries Group or UB Group is an Indian conglomerate company headquartered in UB City, Bangalore in the state of Karnataka. The company has annual sales of over US$4.5 billion and a market capitalization of approximately US$12 billion. Its core business includes beverages, aviation, electrical and chemical fertilizers. The company markets beer under the Kingfisher brand, and owns various other brands of alcoholic beverages. It also launched Kingfisher Airlines, an airline in India whose operation has been halted after problems in 2014,that led to its licence being revoked by the DGCA. United Breweries is India's largest producer of beer with a market share of around 48% by volume.
The company chairman is Vijay Mallya, who had been a member of the Indian Parliament. United Breweries now has greater than a 40% share of the Indian brewing market with 79 distilleries and bottling units across the world. Recently, UB financed a takeover of the spirits business of the rival Shaw-Wallace company, giving it a majority share of India's spirits business. The group also owns the Mendocino Brewing Company in the United States.
Taj Mahal (1941 film) is a Bollywood film. It was released in 1941 directed by Nanubhai Vakil and had Nazir and Suraiya in pivotal roles under the Banner of Sri Meenakshi Pictures.Film music was by Damodar.Film songs lyricists were Behzad Lakhnavi,S. Khalil and Pandit Anuj.Playback singers were Indurani and Fakir Mohammad.
Taj Mahal (Kannada: ತಾಜ್ಮಹಲ್) is a 2008 Indian Kannada romantic drama film directed and written by R. Chandru and starring Ajay Rao and Pooja Gandhi. Produced by T. Shivashankar Reddy, the film is Chandru's directoral debut. The film opened on 25 July 2008 to generally positive reviews from critics and enjoyed a 150-day run. Music director Abhiman Roy was awarded the Best Music Director accolade at the Karnataka State Film Awards for his film score.
Sunil Raoh was asked to play the lead but backed out, citing personal reasons. Ajay Rao, who had one successful role in the film Excuse Me, replaced Raoh. Taj Mahal's success enhanced Rao's career. Upon the film's release, some viewers called Chandru, accusing him of basing the film on their lives. Chandru dismissed these claims and stated that the film was based on events in a friend's life.
India is a feminine given name derived from the name of the country India, which takes its name from the Indus River. The name was used for India Wilkes, a character in the novel and movie Gone with the Wind. Its use for girls in England began during the British rule in India during the 19th century. It has been used for daughters of aristocratic families in England that had ties to Colonial India, such as India Hicks.
The name has ranked in the top 1,000 most popular names for girls in the United States since 1970. It was the 690th most popular name for girls born in the United States in 2007, down from 567th place in 2006. Prior to 1970, it had last ranked among the top 1,000 names given to girls in that country between 1900 and 1910. It has been in use in the United States as a girls name since at least 1880, the earliest year records are available. It was the 217th most popular name for girls born in England and Wales in 2007.
Join me on a full tour of the Taj Mahal, the world’s most magnificent testimony to undying love. If you like this clip, be sure to follow me on Youtube (400,000+ followers so far). Each Saturday, I upload one new clip about my travels around the world. FOLLOW ME: Website/blog: http://theluxurytravelexpert.com Instagram: https://instagram.com/luxurytravelexpert Twitter: https://twitter.com/LuxTravelExpert Facebook: https://www.facebook.com/LuxuryTravelExpert Tumblr: http://luxurytravelexpert.tumblr.com
Links to all the episodes of our AGRA Heritage series are given below :) AGRA Heritage Walk - Trailer - https://youtu.be/8TJMbLmLc_w Shree Ji Mishthan Bhandar - Breakfast at Agra - https://youtu.be/VgZyfaUdUlo Agra Fort | Guided Tour - HINDI | Red Fort | Akbar Fort - https://youtu.be/mkTrpDULiis Baby Taj - tomb of Itimad ud Daulah - https://youtu.be/3euXqPX7aoc Mehtab Bagh (Black Taj Mahal) - https://youtu.be/fPZngG2DmbY Bajrang Chaat Bhandar at Agra - https://youtu.be/xE-DsTUEHbg TAJ MAHAL - https://youtu.be/nZ8hDHlf560 Pietra dura on Taj Mahal - https://youtu.be/YcqXYaOpV58 Tomb of Mariam Zamani (Jodhabai / Harkha Bai / Heer Kunwari) - https://youtu.be/b0d7EFWF19U Akbar's Tomb - Sikandara - https://youtu.be/FXR5diNbOV0 The Red Taj - Hessing's Tomb - https://youtu.be/JLYdTYDAXiA Halwa Par...
Agra is world most popular tourist place and this is a dream place for not only indians even for foreigners. Agra is situated in uttar pradesh and agra is not a very big city but you will see so many places here including Taj Mahal. In this video you will see the tourist places of agra with complete tour information and all expenses of trip. So after watching this video you will be able to make plan for agra. You can get your answer after watching this video and able to make your Agra tour plan and Agra tour cost. Agra ke taj mahal ke bare me har koi janta hai jise dekhne ke lie desh hi nhi videsho se bhi tourist yaha par aate hai. Taj mahal duniya ki sabse famous tourist places me se ek hai lekin agra me taj mahal ke alawa bhi kai sari places hai jaha ghumne ke lie tourist ja skte hai a...
Taj Mahal at Agra, India is one of the wonders of the world. The Taj Mahal (4K) was commissioned by Shah Jahan in 1631, to be built in the memory of his wife Mumtaz Mahal, a Persian princess who died giving birth to their 14th child, Gauhara Begum. The Taj Mahal incorporates and expands on design traditions of Persian and earlier Mughal architecture. Note: Video recording is prohibited inside the Taj Mahal. So apologies for not posting Taj Mahal interior videos. My Instagram - http://instagram.com/askfranklin/ Music -William French - Blue Heron (https://soundcloud.com/williamfrenchmusic/william-french-blue-heron-1)
Come tour with us one of the most beautiful structures on earth. The famous Taj Mahal 4k in Agra, India. We also show you rare footage of Inside the Taj Mahal. 📝 Get the best Travel Insurance for your trip - https://bit.ly/2S5A6fN 🏠 Find the Best Places To Stay and Experiences Here: https://bit.ly/3jo2oyw 🎥🎥Equipment We Use🎥🎥 https://amzn.to/2AdrvSY ❤️Click Here To Subscribe To Our Travel Channel: https://bit.ly/2GEoVXx 📸Follow us on Insta: https://www.instagram.com/wonderliv/ #TajMahal #TajMahalInside #TajMahal4k #TajMahalTour #TajMahalIndia Inside the Taj Mahal, the cenotaphs honoring Mumtaz Mahal and Shah Jahan are enclosed in an eight-sided chamber ornamented with pietra dura (an inlay with semi-precious stones) and a marble lattice screen. But the gorgeous monuments are just f...
The Taj Mahal (/ˌtɑːdʒ məˈhɑːl/, more often /ˈtɑːʒ/; Persian for "Crown of Palaces", pronounced [ˈt̪aːdʒ mɛˈɦɛl]) is an ivory-white marble mausoleum on the south bank of the Yamuna river in the Indian city of Agra. It was commissioned in 1632 by the Mughal emperor, Shah Jahan (reigned 1628–1658), to house the tomb of his favorite wife, Mumtaz Mahal. The tomb is the centrepiece of a 42-acre complex, which includes a mosque and a guest house, and is set in formal gardens bounded on three sides by a crenellated wall.
Construction of the mausoleum was essentially completed in 1643 but work continued on other phases of the project for another 10 years. The Taj Mahal complex is believed to have been completed in its entirety in 1653 at a cost estimated at the time to be around 32 million rupees, which in 2015 would be approximately 52.8 billion rupees (US$827 million). The construction project employed some 20,000 artisans under the guidance of a board of architects led by the court architect to the emperor, Ustad Ahmad Lahauri.
I was in my bed a'sleepin', oh-boy, what a dream
I was in my bed sleepin', oh-boy, what a dream
I was dreamin' 'bout my TV Mama, the one with the big, wide screen
She got great big eyes and little bitty feet and in the waist, she's so nice and neat
She's my TV Mama, one with the big, wide screen
Every time she loves me, man, she makes me scream
She just taste like candy, boys, I really go for sweets,
I love her from her head down to her little bitty feet
Yeah, she's my TV Mama, one with the big, wide screen
Every time she loves me, oh yes, I'm bound to scream
I'm just kind-a rollin', tumblin', talkin' all out of my head
Well just I'm rollin' and tumblin', man, I'm talkin' all out of my head