- published: 17 Nov 2009
- views: 52591271
'+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; })); }); -->
John Adams (October 30 [O.S. October 19] 1735 – July 4, 1826) was an American lawyer, author, statesman, and diplomat. He served as the second President of the United States (1797–1801), the first Vice President (1789–97), and as a Founding Father was a leader of American independence from Great Britain. Adams was a political theorist in the Age of Enlightenment who promoted republicanism and a strong central government. His innovative ideas were frequently published. He was also a dedicated diarist and correspondent, particularly with his wife and key advisor Abigail.
He collaborated with his cousin, revolutionary leader Samuel Adams, but he established his own prominence prior to the American Revolution. After the Boston Massacre, despite severe local anti-British sentiment, he provided a successful though unpopular legal defense of the accused British soldiers, driven by his devotion to the right to counsel and the "protect[ion] of innocence". As a delegate from Massachusetts to the Continental Congress, Adams played a leading role in persuading Congress to declare independence. He assisted Thomas Jefferson in drafting the Declaration of Independence in 1776, and was its foremost advocate in the Congress. As a diplomat in Europe, he helped negotiate the eventual peace treaty with Great Britain, and acquired vital governmental loans from Amsterdam bankers. Adams was the primary author of the Massachusetts Constitution in 1780 which influenced American political theory, as did his earlier Thoughts on Government.
John Adams is a 2008 American television miniseries chronicling most of U.S. President John Adams' political life and his role in the founding of the United States. Paul Giamatti portrays John Adams. The miniseries was directed by Tom Hooper. Kirk Ellis wrote the screenplay based on the book John Adams by David McCullough. The biopic of John Adams and the story of the first fifty years of the United States was broadcast in seven parts by HBO between March 16 and April 20, 2008. John Adams received widespread critical acclaim, and many prestigious awards. The show won four Golden Globe awards and thirteen Emmy awards, more than any other miniseries in history.
Emeritus Professor John Adams (born 1938) of University College London, is a professor of geography and leading theorist on risk compensation. His book Risk is an analysis of how humans assess and respond to perceived risks.
Adams spoke at the Shared Space conference held in Ipswich in June, 2005, where in his talk titled "Risk Compensation versus the obedient automaton theory of human behaviour" he discussed how understanding risk compensation was essential to the understanding of why shared space principles work for the design of public spaces such as road layouts in towns.
He has also coined the term and written extensively on the phenomenon of hypermobility.
Adams has been critical of the Intergovernmental Panel on Climate Change (IPCC) and has praised "reputable scientists who react sceptically to the “hockey stick” peddled by Sir John Houghton and the IPCC."
Adams was a member of the advisory committee to the Anti-Concorde Project.
The Blessed John Adams was an English Catholic priest and martyr.
He was born at Winterborne St Martin in Dorset at an unknown date (ca. 1543?) and became a Protestant minister. He later entered the Catholic Church and travelled to the English College then at Rheims, arriving on 7 December 1579. He was ordained a priest at Soissons on 17 December 1580. He set out for the mission in England on 29 March 1581.
He is known to have worked in Hampshire but details of his later, as of his earlier life, are patchy. It may be that he was taken prisoner at Rye only a short time after landing in England and that he escaped. In 1583 he was described as a man of "about forty years of age, of average height, with a dark beard, a sprightly look and black eyes. He was a very good controversialist, straightforward, very pious, and pre-eminently a man of hard work. He laboured very strenuously at Winchester and in Hampshire, where he helped many, especially of the poorer classes."
John William "Tree" Adams (September 22, 1921 – August 20, 1969) was an American football offensive lineman in the National Football League (NFL) for the Washington Redskins from 1945 to 1949. He played college football at the University of Notre Dame.
Adams was born in Charleston, Arkansas as one of ten children. He was considered normal size until he was 10, but then experienced a growth spurt during which he "shot up like a tree". He attended Subiaco Academy in Subiaco, Arkansas, where he played high school football and basketball.
Adams played college football at the University of Notre Dame from 1942-1944. In 1943, he was the backup for Ziggy Czarobski on the 1943 championship team and then became the starting tackle in 1944.
Adams was selected in the third round of the 1945 NFL Draft by the Washington Redskins.
John Adams is a 2001 biography of the Founding Father and second U.S. President, John Adams, written by the popular American historian David McCullough, which won the 2002 Pulitzer Prize for Biography or Autobiography. It has been made into a TV miniseries with the same name by HBO Films. Since the TV miniseries debuted, an alternative cover has been added to the book showing Paul Giamatti as John Adams. The book is available as both hardcover and paperback.
"The problem with Adams is that most Americans know nothing about him." - David McCullough
Although the book was originally intended to be a dual biography of Adams and Jefferson, McCullough was increasingly drawn to Adams and away from Jefferson. The author spent six years studying Adams, reading the same books he had read and visiting the places he had lived.
Perhaps the greatest treasure trove was the enormous amount of correspondence between John Adams and his wife, Abigail Adams, a marriage McCullough calls "one of the great love stories of American history." Also invaluable was his long correspondence with his successor as President, Thomas Jefferson, which McCullough calls "one of the most extraordinary correspondences in the English language."
for any questions! Seal - Kiss From A Rose - "Batman Forever" Soundtrack - Multiple awards winner record. Lyrics: There used to be a graying tower alone on the sea. You became the light on the dark side of me. Love remained a drug that's the high and not the pill. But did you know, That when it snows, My eyes become large and, The light that you shine can be seen. Baby, I compare you to a kiss from a rose on the gray. ...kiss from a rose on the gray. Ooh, The more I get of you, Ooh................... Stranger it feels, yeah. And now that your rose is is in bloom. A light hits the gloom on the gray. There is so much a man can tell you, ..there....................woa... So much he can say. there's so much inside. You remain, you....... My power, my pleasu...
Calvin Harris, Rag’n’Bone Man, Sam Smith, Dua Lipa – Giant / Promises / One Kiss (Live at the 2019 BRITs) Listen to Calvin Harris here: http://clvnhrr.is/Hits?IQId=YT Listen to ‘Giant’: Apple Music ▶ http://clvnhrr.is/Giant/AppleMusic?IQId=YT Spotify ▶ http://clvnhrr.is/Giant/Spotify?IQId=YT iTunes ▶ http://clvnhrr.is/Giant/iTunes?IQId=YT Listen to ‘Promises’: Apple Music ▶️ http://clvnhrr.is/promises/applemusic?IQId=YT Spotify ▶️ http://clvnhrr.is/Promises/Spotify?IQId=YT iTunes ▶️ http://clvnhrr.is/Promises/iTunes?IQId=YT Listen to ‘One Kiss’: Apple Music ▶️ http://smarturl.it/One-Kiss/applemusic?IQId=YT Spotify ▶️ http://smarturl.it/One-Kiss/Spotify?IQId=YT iTunes ▶️ http://smarturl.it/One-Kiss/iTunes ?IQId=YT Follow Calvin Harris Radio (playlist): http://smarturl.it/CalvinHarrisR...
Nikka Graff Lanzarone sings "Kiss of the Spider Woman" from KISS OF THE SPIDER WOMAN, by John Kander and Fred Ebb. From the Broadway Villains Party, September 15th, 2015 Recorded live at Feinstein's/54 Below Hosted and produced by Amy Jo Jackson Musical direction, arrangements, and piano: Brian Nash Production Assistant: Jen Sandler Filmed & Edited by FAMOUS IN NY - http://famousinny.com
http://www.joblo.com - "Lullaby" Official Trailer (2014) Garrett Hedlund, Amy Adams Estranged from his family, Jonathan (Hedlund) discovers his father has decided to take himself off life support in forty-eight hours' time. During this intensely condensed period, a lifetime of drama plays out. Robert (Jenkins) fights a zero sum game to reclaim all that his illness stole from his family. A debate rages on patients' rights and what it truly means to be free. Jonathan reconciles with his father, reconnects with his mother (Archer), sister (Brown-Findlay), and his love (Adams) and reclaims his voice through two unlikely catalysts—a young, wise-beyond-her-years patient (Barden) and a no-nonsense nurse (Hudson). Through this intensely life-affirming prism, an unexpected and powerful journey of ...
Subscribe for more! http://bit.ly/1U9dtB0 Episode 32, broadcast on 30/06/16 Emma and Terry share a bed for the first time... Like, follow and subscribe to Love Island! YouTube: https://www.youtube.com/loveisland Website: http://www.itv.com/loveisland Facebook: https://www.facebook.com/LoveIslandITV2 Twitter: https://twitter.com/LoveIsland Instagram: https://www.instagram.com/loveisland Welcome to the official Love Island YouTube channel. Get ready as some seriously hot singles take over the hottest villa in the Balearics for six weeks of sun, sea and smooching in their quest for the ultimate summer romance and £50,000 prize! Watch more videos from Love Island on the official YouTube channel https://www.youtube.com/loveisland http://www.itv.com http://www.stv.com
Subscribe for more! http://bit.ly/1U9dtB0 Episode 35, Broadcast on 03/07/16 Being the new boy has its pros and cons. Pro: a shot at love with some red hot singles. Con: being put through a Love Island initiation when all you want to do is go to sleep. Hit play to watch Adam teach Adam J who the REAL Adam is in the villa. Like, follow and subscribe to Love Island! YouTube: https://www.youtube.com/loveisland Website: http://www.itv.com/loveisland Facebook: https://www.facebook.com/LoveIslandITV2 Twitter: https://twitter.com/LoveIsland Instagram: https://www.instagram.com/loveisland Welcome to the official Love Island YouTube channel. Get ready as some seriously hot singles take over the hottest villa in the Balearics for six weeks of sun, sea and smooching in their quest for the ultimate s...
Lonny Vogelcheck (James Franco) brings his girlfriend Lindsay (Abby Elliott) home to meet his family for the holidays. What she doesn't bargain for, is all the affectionate kissing. [Season 35, 2009] #SNL Subscribe to SNL: https://goo.gl/tUsXwM Get more SNL: http://www.nbc.com/saturday-night-live Full Episodes: http://www.nbc.com/saturday-night-liv... Like SNL: https://www.facebook.com/snl Follow SNL: https://twitter.com/nbcsnl SNL Tumblr: http://nbcsnl.tumblr.com/ SNL Instagram: http://instagram.com/nbcsnl SNL Pinterest: http://www.pinterest.com/nbcsnl/
"Girls Like You” is out now. http://smarturl.it/GLY For more, visit: https://www.facebook.com/maroon5 https://twitter.com/maroon5 https://www.instagram.com/maroon5 Sign up for updates: http://smarturl.it/Maroon5.News Music video by Maroon 5 performing Girls Like You. © 2018 Interscope Records http://vevo.ly/51VylS
The Adjustment Bureau - In the Men's Room: David (Matt Damon) meets the alluring Elise (Emily Blunt) in the bathroom and easily falls in love with her. BUY THE MOVIE: https://www.fandangonow.com/details/movie/the-adjustment-bureau-2011/1MVd79bd72a84c584a00ea8fd4afe086f13?cmp=Movieclips_YT_Description Watch the best The Adjustment Bureau scenes & clips: https://www.youtube.com/playlist?list=PLZbXA4lyCtqpZuKZT95FjrPpjyXj20LWz FILM DESCRIPTION: Just as he is on the brink of winning a Senate seat, politician David Norris (Matt Damon) meets a ballerina named Elise Sellas (Emily Blunt). Though David is instantly smitten, mysterious men conspire to keep him away from the beautiful dancer. David learns that he is facing the powerful agents of Fate itself, and glimpsing the future laid out for hi...
More from Entertainment Tonight: http://bit.ly/1xTQtvw ET caught up with the couple for their first joint interview at the Para Los Ninos School in Los Angeles on Tuesday, where they were serving lunches to underprivileged kids through Feeding America.
John Adams (October 30 [O.S. October 19] 1735 – July 4, 1826) was an American lawyer, author, statesman, and diplomat. He served as the second President of the United States (1797–1801), the first Vice President (1789–97), and as a Founding Father was a leader of American independence from Great Britain. Adams was a political theorist in the Age of Enlightenment who promoted republicanism and a strong central government. His innovative ideas were frequently published. He was also a dedicated diarist and correspondent, particularly with his wife and key advisor Abigail.
He collaborated with his cousin, revolutionary leader Samuel Adams, but he established his own prominence prior to the American Revolution. After the Boston Massacre, despite severe local anti-British sentiment, he provided a successful though unpopular legal defense of the accused British soldiers, driven by his devotion to the right to counsel and the "protect[ion] of innocence". As a delegate from Massachusetts to the Continental Congress, Adams played a leading role in persuading Congress to declare independence. He assisted Thomas Jefferson in drafting the Declaration of Independence in 1776, and was its foremost advocate in the Congress. As a diplomat in Europe, he helped negotiate the eventual peace treaty with Great Britain, and acquired vital governmental loans from Amsterdam bankers. Adams was the primary author of the Massachusetts Constitution in 1780 which influenced American political theory, as did his earlier Thoughts on Government.