'+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; })); }); -->

Jungle (2000 film)

Jungle is a 2000 Indian thriller film produced and directed by Ram Gopal Varma starring Sunil Shetty, Fardeen Khan and Urmila Matondkar. The ensemble cast film has received positive reviews upon release and was declared a Hit. The film won the Bollywood Movie Award for Best Direction.

Plot

Anu Malhotra and Siddharth Mishra (Sidhu) are in love with each other and would like to get married. Anu is ready to inform her parents about her future life-partner, but everything is put on hold, as the family decides to go out on a group safari-like expedition. Siddharth decides to go incognito also. The group gets to view wildlife from fairly close distances. Tragedy strikes when the group (except Sidhu) is kidnapped by the Bandit Durga Narayan Choudhary and his gang. The bandits commit atrocities on the kidnapped people and finally behead one of the women in order to terrorize the government and extract ransom as well as release of one of their men who is in police custody. Once their demands are met, the bandits release remaining hostages, except Anu, whom the chief Durga Narayan Choudhary has started liking. This is unacceptable by his girlfriend Bali, the only female bandit of the gang. When Sidhu not find Anu among the released hostages, he sends the illegal arms supplier Dorai to request Durga Narayan Choudhary for Anu's release. He secretly follows Dorai and finally reaches Anu. In the ensuing commotion, he is able to run away with her, with the bandits in their pursuit. They keep searching their way out of the dense forest. Meanwhile the goons started to reduce in numbers as they get shot one by one during repeated police encounters. Finally, Durga is the only one left. Still mad about Anu, he searches for her. He is about to take Anu away once more but is intercepted by Commander Shivraj, whom he eventually murders, but finally Sidhu kills Durga and re-unites with Anu and the movie ends on a happy note.

Jungle (board game)

Jungle or Dou Shou Qi (Chinese: 鬥獸棋, "Game of Fighting Animals") is a traditional Chinese board game played on a 7×9 board. The game is also known as The Jungle Game, Jungle Chess, or Animals Chess, and is sometimes called Oriental Chess or Children's Chess.

Jungle is a two-player strategy game and has been cited as resembling the Western game Stratego, but Stratego actually has more in common with another Chinese board game known as Jun Qi (Chinese: 軍棋) or "Army Game".

Rules

Objective

The goal of the game is either to move a piece onto a special square, the den, on the opponent's side of the board, or capture all of the opponent's pieces.

Board

The Jungle gameboard consists of seven columns and nine rows of squares. Pieces move on the square spaces as in international chess, not on the lines as in xiangqi. Pictures of eight animals and their names appear on each side of the board to indicate initial placement of the game pieces. After initial setup, these animal spaces have no special meaning in gameplay.

List of Pokémon Trading Card Game sets

This is a list of expansion sets for the Pokémon Trading Card Game.

Wizards Of The Coast

When the series first launched in English in late 1998, Wizards Of The Coast handled publishing.

The First Generation Sets

Pokémon Demo Game Plastic Pack

The Pokémon Demo Game pack was the earliest Pokémon card pack to be produced in the English Pokémon TCG. This card pack was printed and distributed in December 1998 to select retailers and at Magic: The Gathering (MTG) trading card shows as a limited production run. This Pokémon pack consists of 24 Base Set shadowless cards and an instruction manual. The remaining Pokémon Demo Game packs were given to guests and vendors at the annual E3 (Electronic Entertainment Expo) event which was held from May 13–15 in 1999. This Pokémon Demo Game pack is considered the "Holy Grail" within the Pokémon trading card game because it was the very first introduction of the Pokémon trading cards within the United States. This Pokémon pack is limited in quantity and predates all other Pokémon Set cards including the 1st edition Base Set cards making these packs extremely rare and valuable. It is estimated that between 100-200 of these Pokémon Demo Game packs remain unopened. The first ever Demo Game pack to be issued a PSA certification number was Demo Game pack #24287143 making it the default earliest known package of English Pokémon cards to remain sealed in existence.

Analog Man (album)

Analog Man is the eleventh (and latest) studio solo album by the American singer-songwriter and multi-instrumentalist Joe Walsh, formerly of the James Gang and lead guitarist for the Eagles. The album was released in mid 2012, on the label Fantasy in the United States and the United Kingdom, It is his first studio solo album to be released since 1992's Songs for a Dying Planet, 20 years prior. The album features 10 new songs, and was co-produced by Jeff Lynne. The album also features contributions from the former Beatles drummer, Ringo Starr, the former Barnstorm members, Kenny Passarelli and Joe Vitale, former James Gang members, Jim Fox and Dale Peters, and also a duet with the infamous rock and roll legend, Little Richard.

The album peaked at No. 12 on the Billboard 200 chart, as well as No. 4 on the top rock albums chart.

Production and recording

After touring with the Eagles and struggling with alcohol and drug addictions for many years, Walsh decided that it was time to record a new album while being supported by his wife, Marjorie Bach (sister of Ringo Starr's wife, Barbara). To pursue making the album, she also gave Walsh Jeff Lynne's contact number. When Walsh was asked about his collaboration with co-producer Jeff Lynne, he said "Jeff and I met socially, and at one point he said, "Why don't you bring your tracks over sometime and we'll have a listen." That led to some comments and ideas that he had. Gradually, we worked on some stuff and checked out some of his stuff too. It ended up that he really helped me finish it up and ended up producing. He really put his stamp on my music and took it in a direction I never would have gone, and I'm really grateful to him."

Mat

A mat is a generic term for a piece of fabric material it is used for many things, generally placed on a floor or other flat surface, which serves a range of purposes including:

  • providing a regular or flat surface, such as a cushioned computer mousepad.
  • protecting that which is beneath the mat, such as a place mat or the matting used in archival framing and preservation of documents and paintings.
  • protecting that which is above the mat, such as a wrestling or gymnastics mat, or an anti-vibration mat.
  • serving to clean items passed over it, such as a doormat, which cleans dirt from the soles of shoes.
  • In domestic settings:

  • A doormat, more frequently spelled door-mat, is a flat, usually rectangular object placed immediately outside or inside the entrance to a house or other building, to allow people to easily scrub or wipe the soles of their shoes before entering. Doormats are usually made from tough, long-lasting material such as coir, palmyra (palm) fibres and stalks, nylon, rubber, cloth, or aluminium and other metals. Doormats may also be known as welcome mats, as their location at an entrance constitutes a "welcome" to visitors, and may therefore also bear some word, message or sign of greeting. This in turn has given rise to a subculture of cartoons featuring characters returning home to find (to the reader) a humorous message on the doormat. The lowly purpose for which doormats exist has also led to informal use of the term as a reference to people who behave timidly or passively when exploited by others (see also Caspar Milquetoast).
  • This page contains text from Wikipedia, the Free Encyclopedia - https://wn.com/Mat

    Mató

    Mató (Catalan pronunciation: [məˈto]) is a fresh cheese of Catalonia made from cows' or goats' milk, with no salt added.

    It is usually served with honey, as a traditional and emblematic Catalan dessert known as mel i mató.

    Description and origin

    Mató is a whey cheese similar to non-industrial variants of the fresh cheeses known as Brull in Maestrat, Ports de Beseit and the Southern Terres de l'Ebre and as Brossat in Andorra, Pallars, Menorca, Mallorca and parts of Occitania, as well as the brocciu in Corsica and other types of curd cheese such as Italian ricotta.

    The Mató from the villages near the Montserrat mountain, such as Ullastrell and Marganell, is quite famous.

    Mató is mentioned in the Sent Soví, a 14th-century Catalan cookbook, as well as in the El Noi de la Mare local Christmas carol. It was very popular during the Middle Ages, when it was made plain or scented with orange flowers.

    See also

  • Catalan symbols
  • References

    External links

  • Media related to Mató at Wikimedia Commons
  • Mató recipe
  • Mother (1926 film)

    Mother (Russian: Мать, Mat) is a 1926 Soviet film directed by Vsevolod Pudovkin depicting one woman's struggle against Tsarist rule during the Russian Revolution of 1905. The film is based on the 1906 novel The Mother by Maxim Gorky. It is the first film in Pudovkin's "revolutionary trilogy", alongside The End of St. Petersburg (1927) and Storm Over Asia (aka The Heir to Genghis Khan) (1928).

    The film underwent restoration in 1968 in the Mosfilm studio and a sound track was added with music by Tikhon Khrennikov.


    Plot

    In this film, the mother of Pavel Vlasov is drawn into the revolutionary conflict when her husband and son find themselves on opposite sides during a worker's strike. After her husband dies during the failed strike, she betrays her son's ideology in order to try, in vain, to save his life. He is arrested, tried in what amounts to a judicial farce, and sentenced to heavy labor in a prison camp. During his incarceration, his mother aligns herself with him and his ideology and joins the revolutionaries. In the climax of the movie, the mother and hundreds of others march to the prison in order to free the prisoners, who are aware of the plan and have planned their escape. Ultimately, the troops of the Tsar suppress the uprising, killing both mother and son in the final scenes.

    Podcasts:

    • Jungle (2000) Full Hindi Movie | Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav

      A Survival tale of two lovers, who tries their best to escape a jungle which is governed by a cold blooded dacoit. Movie:- Jungle (2000) Starcast:-Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande Directed & Produced by:-Ram Gopal Varma Music by:-Sandeep Chowta -------------------------------------------------------------------- Enjoy and stay connected with us!! Subscribe to Goldmines Hindi:- https://goo.gl/97SvE2 ----------------------------------------------------------------

      published: 02 May 2020
    • JUNGLE (2000) - FULL MOVIE HD | Urmila Matondkar, Sunil Shetty, Fardeen Khan

      "Subscribe to the channel now: https://bit.ly/2XjZ8b2 Watch more full Hindi movies: https://bit.ly/2jWd4KM شاهد جميع الافلام الهندية المترجمة من هنا: https://bit.ly/2m5PNqI Anu and Siddhu are in love and Siddhu turns up when Anu's family camps in a tiger sanctuary for a holiday. Unexpectedly, a sandalwood smuggler takes several members as hostages. Cast: Director : Ram Gopal Varma Producer : Ram Gopal Varma StarCast(s) : Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Nawazuddin Siddiqui Music Director : Sandeep Chowta Follow us on Social Media Facebook: https://www.facebook.com/THEB4UPLUS/ Instagram: https://www.instagram.com/theb4uplus/ Twitter: https://twitter.com/theb4uplus Website: www.b4uplus.com Channel frequency: B4U Plus B4U Plus TP-27 Satellite...

      published: 17 Jan 2020
    • Jungle - Full Hindi Movie | Urmila Matondkar, Sunil Shetty, Fardeen Khan | Full HD

      Presenting Suniel Shetty, Fardeen Khan and Urmila Matondkar starrer SupetHit full movie "Jungle", Directed by Ram Gopal Varma & Music by Sandeep Chowta. Synopsis: Anu and Siddhu are in love and Siddhu turns up when Anu's family camps in a tiger sanctuary for a holiday. Unexpectedly, a sandalwood smuggler takes several members as hostages. Movie Credits: Director : Ram Gopal Varma Producer : Ram Gopal Varma StarCast(s) : Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Nawazuddin Siddiqui Music Director : Sandeep Chowta #Jungle #B4U #B4UKadak Join Us On: Facebook : https://www.facebook.com/B4UMoviesTV Twitter : www.twitter.com/THEOFFICIALB4U Instagram : www.instagram.com/THEOFFICIALB4U Website : www.b4utv.com

      published: 30 Sep 2020
    • JUNGLE (HD) - Bollywood Hindi Full Movie | फरदीन खान और उर्मिला मातोंडकर की रोमांटिक हिंदी मूवी

      A Survival tale of two lovers, who tries their best to escape a jungle which is governed by a cold blooded dacoit. Movie:- Jungle (2000) Starcast:-Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande Directed & Produced by:-Ram Gopal Varma Music by:-Sandeep Chowta

      published: 05 Jul 2022
    • जंगल (2000) हिंदी फूल मूवी - उर्मिला मातोंडकर - फरदीन खान - JUNGLE HINDI MOVIE

      फ़िल्म का नाम: जंगल (2000) कलाकार: सुनील शेट्टी, फरदीन खान, उर्मिला मातोंडकर, मकरंद देशपांडे, सुशांत सिंह, हिमांशु मलिक निर्देशक: राम गोपाल वर्मा निर्माता: राम गोपाल वर्मा Movie Name : Jungle (2000) Cast : Sunil Shetty,Fardeen Khan,Urmila Matondkar,Makrand Deshpande,Sushant Singh,Himanshu Malik Director : Ram Gopal Varma Producer : Ram Gopal Varma जंगल (2000) :- अनु और सिद्धु एक दूसरे से प्यार करते हैं और जब अनु का परिवार छुट्टियाँ मनाने के लिए बाघ अभयारण्य में डेरा डालता है तो सिद्धु वहां आता है। अप्रत्याशित रूप से, एक चंदन तस्कर कई सदस्यों को बंधक बना लेता है। Jungle (2000) :- Anu and Siddhu are in love and Siddhu turns up when Anu's family camps in a tiger sanctuary for a holiday. Unexpectedly, a sandalwood smuggler takes several members as hostages. Click here to Subscribe Hindi F...

      published: 29 Sep 2023
    • Pehli Baar Jo Dekha | Sonu Nigam, Sunidhi Chauhan| Jungle 2000 Songs| Fardeen Khan, Urmila Matondkar

      Presenting PEHLI BAAR JO DEKHA FULL VIDEO SONG from JUNGLE movie starring Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande in lead roles, released in 2000. The song is sung by Sonu Nigam, Sunidhi Chauhan and music is given by Sandeep Chowta, music is available exclusively on Gaane Sune Ansune. Song: PEHLI BAAR JO DEKHA Singer(s): SONU NIGAM, SUNIDHI CHAUHAN Music Director: SANDEEP CHOWTA Lyricist: SAMEER #UrmilaMatondkarSongs #FardeenKhanSongs #2000sHindiSongs #SonuNigamSongs #SunidhiChauhanSongs #RomanticSongs #SameerSongs #SandeepChowtaSongs #HDSongs #GaaneSuneAnsune ► Click to Watch Best Of Sonu Nigam Superhit Songs - https://rb.gy/b0uawc ►Click to Watch 2000's Romantic Songs - https://youtu.be/K7yUaev2KyQ ---------------------------...

      published: 13 Mar 2021
    • Jungle | Full Hindi Movie | Urmila Matondkar, Suniel Shetty, Fardeen Khan | Full HD 1080p

      Presenting Suniel Shetty, Fardeen Khan and Urmila Matondkar starrer SupetHit full movie "Jungle", Directed by Ram Gopal Varma & Music by Sandeep Chowta. Subscribe Here For More Bollywood Movies : https://www.youtube.com/user/B4UNETWORK Synopsis: Anu and Siddhu are in love and Siddhu turns up when Anu's family camps in a tiger sanctuary for a holiday. Unexpectedly, a sandalwood smuggler takes several members as hostages. Movie Credits: Director : Ram Gopal Varma Producer : Ram Gopal Varma StarCast(s) : Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Nawazuddin Siddiqui Music Director : Sandeep Chowta #Jungle #B4U #B4UMovies #SunilShetty #NawazuddinSiddiqui #FardeenKhan #UrmilaMatondkar #RajpalYadav #SushantSingh #FullMovie #BollywoodMovie #JungleSongs #Na...

      published: 18 Aug 2016
    • Jungle (2000) Promo Fardeen Khan Urmila Matonkar Sunil Shetty

      Rare promo, used for the film during its pre-release promotion for the film during the time of release. Promo has been taken from a very rare source, obtained and used for your viewing pleasure. Directed By Ram Gopal Varma @RGVOFFICIAL

      published: 09 Nov 2021
    • Do Pyar Karne Wale | Sonu Nigam, Sunidhi Chauhan | Jungle 2000 Songs| Fardeen Khan, Urmila Matondkar

      Presenting DO PYAR KARNE WALE FULL VIDEO SONG from JUNGLE movie starring Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande in lead roles, released in 2000. The song is sung by Sonu Nigam, Sunidhi Chauhan and music is given by Sandeep Chowta, music is available exclusively on Gaane Sune Ansune. Song:- DO PYAR KARNE WALE Singer:- SONU NIGAM, SUNIDHI CHAUHAN Music Director:- SANDEEP CHOWTA Lyricist:- SAMEER #UrmilaMatondkarSongs #FardeenKhanSongs #2000sHindiSongs #SonuNigamSongs #SunidhiChauhanSongs #RomanticSongs #SameerSongs #SandeepChowtaSongs #HDSongs #GaaneSuneAnsune ► Click to Watch Timeless Romantic Songs Jukebox - https://rb.gy/19c1fz ►Click to Watch Bollywood Evergreen Superstars Songs - https://bit.ly/3290TMZ __________________________...

      published: 27 May 2020
    • Tu mujhe maar main tujhe - rajpal yadav | Jungle | Sunil Shetty | Fardeen Khan | Urmila Matondkar

      Rajpal Yadav playing game with child - tu mujhe maar main tujhe maroonga. And later he makes fun of child scene from Jungle movie Rajpal Yadav as a daaku. #yogeshrathore #junglemovie Thanks for watching.

      published: 14 Apr 2020
    developed with YouTube
    Jungle (2000) Full Hindi Movie | Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav
    2:26:14

    Jungle (2000) Full Hindi Movie | Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav

    • Order:
    • Duration: 2:26:14
    • Uploaded Date: 02 May 2020
    • views: 13685572
    A Survival tale of two lovers, who tries their best to escape a jungle which is governed by a cold blooded dacoit. Movie:- Jungle (2000) Starcast:-Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande Directed & Produced by:-Ram Gopal Varma Music by:-Sandeep Chowta -------------------------------------------------------------------- Enjoy and stay connected with us!! Subscribe to Goldmines Hindi:- https://goo.gl/97SvE2 ----------------------------------------------------------------
    https://wn.com/Jungle_(2000)_Full_Hindi_Movie_|_Sunil_Shetty,_Fardeen_Khan,_Urmila_Matondkar,_Rajpal_Yadav
    JUNGLE (2000) - FULL MOVIE HD | Urmila Matondkar, Sunil Shetty, Fardeen Khan
    2:26:14

    JUNGLE (2000) - FULL MOVIE HD | Urmila Matondkar, Sunil Shetty, Fardeen Khan

    • Order:
    • Duration: 2:26:14
    • Uploaded Date: 17 Jan 2020
    • views: 6733645
    "Subscribe to the channel now: https://bit.ly/2XjZ8b2 Watch more full Hindi movies: https://bit.ly/2jWd4KM شاهد جميع الافلام الهندية المترجمة من هنا: https://bit.ly/2m5PNqI Anu and Siddhu are in love and Siddhu turns up when Anu's family camps in a tiger sanctuary for a holiday. Unexpectedly, a sandalwood smuggler takes several members as hostages. Cast: Director : Ram Gopal Varma Producer : Ram Gopal Varma StarCast(s) : Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Nawazuddin Siddiqui Music Director : Sandeep Chowta Follow us on Social Media Facebook: https://www.facebook.com/THEB4UPLUS/ Instagram: https://www.instagram.com/theb4uplus/ Twitter: https://twitter.com/theb4uplus Website: www.b4uplus.com Channel frequency: B4U Plus B4U Plus TP-27 Satellite Name: Nilesat Downlink Frequency: 12226 Polarity: Horizontal FEC: 5/6 Symbol Rate: 27500 - Subscribe now to B4U Aflam : https://bit.ly/326GGGL #B4U_plus #B4U_Aflam #Bollywood #Hindi_movies"
    https://wn.com/Jungle_(2000)_Full_Movie_Hd_|_Urmila_Matondkar,_Sunil_Shetty,_Fardeen_Khan
    Jungle - Full Hindi Movie | Urmila Matondkar, Sunil Shetty, Fardeen Khan | Full HD
    2:08:14

    Jungle - Full Hindi Movie | Urmila Matondkar, Sunil Shetty, Fardeen Khan | Full HD

    • Order:
    • Duration: 2:08:14
    • Uploaded Date: 30 Sep 2020
    • views: 66780
    Presenting Suniel Shetty, Fardeen Khan and Urmila Matondkar starrer SupetHit full movie "Jungle", Directed by Ram Gopal Varma & Music by Sandeep Chowta. Synopsis: Anu and Siddhu are in love and Siddhu turns up when Anu's family camps in a tiger sanctuary for a holiday. Unexpectedly, a sandalwood smuggler takes several members as hostages. Movie Credits: Director : Ram Gopal Varma Producer : Ram Gopal Varma StarCast(s) : Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Nawazuddin Siddiqui Music Director : Sandeep Chowta #Jungle #B4U #B4UKadak Join Us On: Facebook : https://www.facebook.com/B4UMoviesTV Twitter : www.twitter.com/THEOFFICIALB4U Instagram : www.instagram.com/THEOFFICIALB4U Website : www.b4utv.com
    https://wn.com/Jungle_Full_Hindi_Movie_|_Urmila_Matondkar,_Sunil_Shetty,_Fardeen_Khan_|_Full_Hd
    JUNGLE (HD) - Bollywood Hindi Full Movie | फरदीन खान और उर्मिला मातोंडकर की रोमांटिक हिंदी मूवी
    2:26:49

    JUNGLE (HD) - Bollywood Hindi Full Movie | फरदीन खान और उर्मिला मातोंडकर की रोमांटिक हिंदी मूवी

    • Order:
    • Duration: 2:26:49
    • Uploaded Date: 05 Jul 2022
    • views: 81215
    A Survival tale of two lovers, who tries their best to escape a jungle which is governed by a cold blooded dacoit. Movie:- Jungle (2000) Starcast:-Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande Directed & Produced by:-Ram Gopal Varma Music by:-Sandeep Chowta
    https://wn.com/Jungle_(Hd)_Bollywood_Hindi_Full_Movie_|_फरदीन_खान_और_उर्मिला_मातोंडकर_की_रोमांटिक_हिंदी_मूवी
    जंगल (2000) हिंदी फूल मूवी - उर्मिला मातोंडकर - फरदीन खान - JUNGLE HINDI MOVIE
    2:23:46

    जंगल (2000) हिंदी फूल मूवी - उर्मिला मातोंडकर - फरदीन खान - JUNGLE HINDI MOVIE

    • Order:
    • Duration: 2:23:46
    • Uploaded Date: 29 Sep 2023
    • views: 2059087
    फ़िल्म का नाम: जंगल (2000) कलाकार: सुनील शेट्टी, फरदीन खान, उर्मिला मातोंडकर, मकरंद देशपांडे, सुशांत सिंह, हिमांशु मलिक निर्देशक: राम गोपाल वर्मा निर्माता: राम गोपाल वर्मा Movie Name : Jungle (2000) Cast : Sunil Shetty,Fardeen Khan,Urmila Matondkar,Makrand Deshpande,Sushant Singh,Himanshu Malik Director : Ram Gopal Varma Producer : Ram Gopal Varma जंगल (2000) :- अनु और सिद्धु एक दूसरे से प्यार करते हैं और जब अनु का परिवार छुट्टियाँ मनाने के लिए बाघ अभयारण्य में डेरा डालता है तो सिद्धु वहां आता है। अप्रत्याशित रूप से, एक चंदन तस्कर कई सदस्यों को बंधक बना लेता है। Jungle (2000) :- Anu and Siddhu are in love and Siddhu turns up when Anu's family camps in a tiger sanctuary for a holiday. Unexpectedly, a sandalwood smuggler takes several members as hostages. Click here to Subscribe Hindi Full Movie : http://www.youtube.com/channel/UCfjfdNcPxTrtxbT66lcrDFg?annotation_id=annotation_2452002513&sub_confirmation=1
    https://wn.com/जंगल_(2000)_हिंदी_फूल_मूवी_उर्मिला_मातोंडकर_फरदीन_खान_Jungle_Hindi_Movie
    Pehli Baar Jo Dekha | Sonu Nigam, Sunidhi Chauhan| Jungle 2000 Songs| Fardeen Khan, Urmila Matondkar
    5:16

    Pehli Baar Jo Dekha | Sonu Nigam, Sunidhi Chauhan| Jungle 2000 Songs| Fardeen Khan, Urmila Matondkar

    • Order:
    • Duration: 5:16
    • Uploaded Date: 13 Mar 2021
    • views: 2143893
    Presenting PEHLI BAAR JO DEKHA FULL VIDEO SONG from JUNGLE movie starring Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande in lead roles, released in 2000. The song is sung by Sonu Nigam, Sunidhi Chauhan and music is given by Sandeep Chowta, music is available exclusively on Gaane Sune Ansune. Song: PEHLI BAAR JO DEKHA Singer(s): SONU NIGAM, SUNIDHI CHAUHAN Music Director: SANDEEP CHOWTA Lyricist: SAMEER #UrmilaMatondkarSongs #FardeenKhanSongs #2000sHindiSongs #SonuNigamSongs #SunidhiChauhanSongs #RomanticSongs #SameerSongs #SandeepChowtaSongs #HDSongs #GaaneSuneAnsune ► Click to Watch Best Of Sonu Nigam Superhit Songs - https://rb.gy/b0uawc ►Click to Watch 2000's Romantic Songs - https://youtu.be/K7yUaev2KyQ ------------------------------------------------- Enjoy and stay connected with us!! Log on to Youtube and tune in to Gaane Sune Ansune to listen your all time favourites, any time, any day. http://www.youtube.com/gaanesuneansune Circle us on G+ http://www.google.com/+gaanesuneansune Like us on Facebook http://www.facebook.com/GaaneSuneAnsune Follow us on http://www.twitter.com/gaanesuneansune -----------------------------------------------------------------------------
    https://wn.com/Pehli_Baar_Jo_Dekha_|_Sonu_Nigam,_Sunidhi_Chauhan|_Jungle_2000_Songs|_Fardeen_Khan,_Urmila_Matondkar
    Jungle | Full Hindi Movie | Urmila Matondkar, Suniel Shetty, Fardeen Khan | Full HD 1080p
    2:08:14

    Jungle | Full Hindi Movie | Urmila Matondkar, Suniel Shetty, Fardeen Khan | Full HD 1080p

    • Order:
    • Duration: 2:08:14
    • Uploaded Date: 18 Aug 2016
    • views: 6074395
    Presenting Suniel Shetty, Fardeen Khan and Urmila Matondkar starrer SupetHit full movie "Jungle", Directed by Ram Gopal Varma & Music by Sandeep Chowta. Subscribe Here For More Bollywood Movies : https://www.youtube.com/user/B4UNETWORK Synopsis: Anu and Siddhu are in love and Siddhu turns up when Anu's family camps in a tiger sanctuary for a holiday. Unexpectedly, a sandalwood smuggler takes several members as hostages. Movie Credits: Director : Ram Gopal Varma Producer : Ram Gopal Varma StarCast(s) : Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Nawazuddin Siddiqui Music Director : Sandeep Chowta #Jungle #B4U #B4UMovies #SunilShetty #NawazuddinSiddiqui #FardeenKhan #UrmilaMatondkar #RajpalYadav #SushantSingh #FullMovie #BollywoodMovie #JungleSongs #NawazuddinSiddiquiMovie #FullFilms #LatestBollywoodMovie #UrmilaMatondkarMovie #LatestMovie #Movie2019 #ComedyMovie #RomanticMovie #ThrillerMovie Join Us On: Facebook : https://www.facebook.com/B4UMoviesTV Twitter : www.twitter.com/THEOFFICIALB4U Instagram : www.instagram.com/THEOFFICIALB4U Website : www.b4utv.com
    https://wn.com/Jungle_|_Full_Hindi_Movie_|_Urmila_Matondkar,_Suniel_Shetty,_Fardeen_Khan_|_Full_Hd_1080P
    Jungle (2000) Promo Fardeen Khan Urmila Matonkar Sunil Shetty
    1:00

    Jungle (2000) Promo Fardeen Khan Urmila Matonkar Sunil Shetty

    • Order:
    • Duration: 1:00
    • Uploaded Date: 09 Nov 2021
    • views: 962
    Rare promo, used for the film during its pre-release promotion for the film during the time of release. Promo has been taken from a very rare source, obtained and used for your viewing pleasure. Directed By Ram Gopal Varma @RGVOFFICIAL
    https://wn.com/Jungle_(2000)_Promo_Fardeen_Khan_Urmila_Matonkar_Sunil_Shetty
    Do Pyar Karne Wale | Sonu Nigam, Sunidhi Chauhan | Jungle 2000 Songs| Fardeen Khan, Urmila Matondkar
    4:33

    Do Pyar Karne Wale | Sonu Nigam, Sunidhi Chauhan | Jungle 2000 Songs| Fardeen Khan, Urmila Matondkar

    • Order:
    • Duration: 4:33
    • Uploaded Date: 27 May 2020
    • views: 4521168
    Presenting DO PYAR KARNE WALE FULL VIDEO SONG from JUNGLE movie starring Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande in lead roles, released in 2000. The song is sung by Sonu Nigam, Sunidhi Chauhan and music is given by Sandeep Chowta, music is available exclusively on Gaane Sune Ansune. Song:- DO PYAR KARNE WALE Singer:- SONU NIGAM, SUNIDHI CHAUHAN Music Director:- SANDEEP CHOWTA Lyricist:- SAMEER #UrmilaMatondkarSongs #FardeenKhanSongs #2000sHindiSongs #SonuNigamSongs #SunidhiChauhanSongs #RomanticSongs #SameerSongs #SandeepChowtaSongs #HDSongs #GaaneSuneAnsune ► Click to Watch Timeless Romantic Songs Jukebox - https://rb.gy/19c1fz ►Click to Watch Bollywood Evergreen Superstars Songs - https://bit.ly/3290TMZ _______________________________________ Enjoy and stay connected with us!! Log on to Youtube and tune in to Gaane Sune Ansune to listen your all time favourites, any time, any day. http://www.youtube.com/gaanesuneansune Circle us on G+ http://www.google.com/+gaanesuneansune Like us on Facebook http://www.facebook.com/GaaneSuneAnsune Follow us on http://www.twitter.com/gaanesuneansune -----------------------------------------------------------------------------
    https://wn.com/Do_Pyar_Karne_Wale_|_Sonu_Nigam,_Sunidhi_Chauhan_|_Jungle_2000_Songs|_Fardeen_Khan,_Urmila_Matondkar
    Tu mujhe maar main tujhe - rajpal yadav | Jungle | Sunil Shetty | Fardeen Khan | Urmila Matondkar
    2:00

    Tu mujhe maar main tujhe - rajpal yadav | Jungle | Sunil Shetty | Fardeen Khan | Urmila Matondkar

    • Order:
    • Duration: 2:00
    • Uploaded Date: 14 Apr 2020
    • views: 4517019
    Rajpal Yadav playing game with child - tu mujhe maar main tujhe maroonga. And later he makes fun of child scene from Jungle movie Rajpal Yadav as a daaku. #yogeshrathore #junglemovie Thanks for watching.
    https://wn.com/Tu_Mujhe_Maar_Main_Tujhe_Rajpal_Yadav_|_Jungle_|_Sunil_Shetty_|_Fardeen_Khan_|_Urmila_Matondkar
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Jungle (2000) Full Hindi Movie | Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav

    A Survival tale of two lovers, who tries their best to escape a jungle which is governed by a cold blooded dacoit. Movie:- Jungle (2000) Starcast:-Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav, Sushant Singh, Makrand Deshpande Directed & Produced by:-Ram Gopal Varma Music by:-Sandeep Chowta -------------------------------------------------------------------- Enjoy and stay connected with us!! Subscribe to Goldmines Hindi:- https://goo.gl/97SvE2 ----------------------------------------------------------------
    2:26:14
    Jungle (2000) Full Hindi Movie | Sunil Shetty, Fardeen Khan, Urmila Matondkar, Rajpal Yadav
    A Survival tale of two lovers, who tries their best to escape a jungle which is governed b...
    published: 02 May 2020
    Play in Full Screen
    2:26:14
    JUNGLE (2000) - FULL MOVIE HD | Urmila Matondkar, Sunil Shetty, Fardeen Khan
    "Subscribe to the channel now: https://bit.ly/2XjZ8b2 Watch more full Hindi movies: https:...
    published: 17 Jan 2020
    Play in Full Screen
    2:08:14
    Jungle - Full Hindi Movie | Urmila Matondkar, Sunil Shetty, Fardeen Khan | Full HD
    Presenting Suniel Shetty, Fardeen Khan and Urmila Matondkar starrer SupetHit full movie "...
    published: 30 Sep 2020
    Play in Full Screen
    2:26:49
    JUNGLE (HD) - Bollywood Hindi Full Movie | फरदीन खान और उर्मिला मातोंडकर की रोमांटिक हिंदी मूवी
    A Survival tale of two lovers, who tries their best to escape a jungle which is governed b...
    published: 05 Jul 2022
    Play in Full Screen
    2:23:46
    जंगल (2000) हिंदी फूल मूवी - उर्मिला मातोंडकर - फरदीन खान - JUNGLE HINDI MOVIE
    फ़िल्म का नाम: जंगल (2000) कलाकार: सुनील शेट्टी, फरदीन खान, उर्मिला मातोंडकर, मकरंद देशपां...
    published: 29 Sep 2023
    Play in Full Screen
    5:16
    Pehli Baar Jo Dekha | Sonu Nigam, Sunidhi Chauhan| Jungle 2000 Songs| Fardeen Khan, Urmila Matondkar
    Presenting PEHLI BAAR JO DEKHA FULL VIDEO SONG from JUNGLE movie starring Sunil Shetty, Fa...
    published: 13 Mar 2021
    Play in Full Screen
    2:08:14
    Jungle | Full Hindi Movie | Urmila Matondkar, Suniel Shetty, Fardeen Khan | Full HD 1080p
    Presenting Suniel Shetty, Fardeen Khan and Urmila Matondkar starrer SupetHit full movie "...
    published: 18 Aug 2016
    Play in Full Screen
    1:00
    Jungle (2000) Promo Fardeen Khan Urmila Matonkar Sunil Shetty
    Rare promo, used for the film during its pre-release promotion for the film during the tim...
    published: 09 Nov 2021
    Play in Full Screen
    4:33
    Do Pyar Karne Wale | Sonu Nigam, Sunidhi Chauhan | Jungle 2000 Songs| Fardeen Khan, Urmila Matondkar
    Presenting DO PYAR KARNE WALE FULL VIDEO SONG from JUNGLE movie starring Sunil Shetty, Far...
    published: 27 May 2020
    Play in Full Screen
    2:00
    Tu mujhe maar main tujhe - rajpal yadav | Jungle | Sunil Shetty | Fardeen Khan | Urmila Matondkar
    Rajpal Yadav playing game with child - tu mujhe maar main tujhe maroonga. And later he mak...
    published: 14 Apr 2020
    Play in Full Screen

    Jungle (2000 film)

    Jungle is a 2000 Indian thriller film produced and directed by Ram Gopal Varma starring Sunil Shetty, Fardeen Khan and Urmila Matondkar. The ensemble cast film has received positive reviews upon release and was declared a Hit. The film won the Bollywood Movie Award for Best Direction.

    Plot

    Anu Malhotra and Siddharth Mishra (Sidhu) are in love with each other and would like to get married. Anu is ready to inform her parents about her future life-partner, but everything is put on hold, as the family decides to go out on a group safari-like expedition. Siddharth decides to go incognito also. The group gets to view wildlife from fairly close distances. Tragedy strikes when the group (except Sidhu) is kidnapped by the Bandit Durga Narayan Choudhary and his gang. The bandits commit atrocities on the kidnapped people and finally behead one of the women in order to terrorize the government and extract ransom as well as release of one of their men who is in police custody. Once their demands are met, the bandits release remaining hostages, except Anu, whom the chief Durga Narayan Choudhary has started liking. This is unacceptable by his girlfriend Bali, the only female bandit of the gang. When Sidhu not find Anu among the released hostages, he sends the illegal arms supplier Dorai to request Durga Narayan Choudhary for Anu's release. He secretly follows Dorai and finally reaches Anu. In the ensuing commotion, he is able to run away with her, with the bandits in their pursuit. They keep searching their way out of the dense forest. Meanwhile the goons started to reduce in numbers as they get shot one by one during repeated police encounters. Finally, Durga is the only one left. Still mad about Anu, he searches for her. He is about to take Anu away once more but is intercepted by Commander Shivraj, whom he eventually murders, but finally Sidhu kills Durga and re-unites with Anu and the movie ends on a happy note.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
    ×