Washington23 »Politics
Print

“Whatever is Necessary to Protect and Restore the Gulf Coast”

Ed. Note: For more information on Federal response resources, volunteer opportunities, and assistance for those in affected areas, visit WhiteHouse.gov/Deepwater-BP-Oil-Spill.

Watch the full video of the President’s press conference above or jump directly to the following sections by clicking the links below (questions are paraphrased):

Opening Remarks
Q: Why does BP sometimes not do what you say?
Q: Why do critics say you’re not doing everything possible?
Q: Why not take over from BP onshore?
Q: Why is equipment delayed?
Q: Why did Elizabeth Birnbaum resign?
Q: Can BP be trusted?
Q: When are you going to get out of Afghanistan?
Q: Do you regret plans to expand drilling?
Q: Why send National Guard to the border? Do you support the AZ boycott?
Q: Are you comfortable with the quote “Boot on the Neck of BP”?
Was there a job offer for Congressman Sestak?

Earlier today, the President took questions from the press at the White House on the BP Oil Spill in the Gulf of Mexico. During his opening remarks, the President updated the American people on the “top kill” procedure that was approved yesterday. This procedure attempts to plug the well with densely packed mud to reduce or stop the flow of oil. It’s still too soon to tell if the procedure will work.
The President also clarified the role the Federal Government has played in the response since Day 1:
The American people should know that from the moment this disaster began, the federal government has been in charge of the response effort. As far as I’m concerned, BP is responsible for this horrific disaster, and we will hold them fully accountable on behalf of the United States as well as the people and communities victimized by this tragedy. We will demand that they pay every dime they owe for the damage they’ve done and the painful losses that they’ve caused. And we will continue to take full advantage of the unique technology and expertise they have to help stop this leak.
But make no mistake: BP is operating at our direction. Every key decision and action they take must be approved by us in advance. I’ve designated Admiral Thad Allen – who has nearly four decades of experience responding to such disasters – as the National Incident Commander, and if he orders BP to do something to respond to this disaster, they are legally bound to do it. So, for example, when they said they would drill one relief well to stem this leak we demanded a backup and ordered them to drill two. And they are in the process of drilling two.

The President emphasized that the government would do everything in it’s power to stop the leak and clean up the mess and was employing the best and brightest minds from around the country to solve this problem. In addition to cleaning up the oil, the Administration is also focused on restoring the livelihoods of families who rely on the Gulf to make a living
We’re also doing whatever it takes to help the men and women whose livelihoods have been disrupted and even destroyed by this spill -– everyone from fishermen to restaurant and hotel owners. So far the Small Business Administration has approved loans and allowed many small businesses to defer existing loan payments. At our insistence, BP is paying economic injury claims, and we’ll make sure that when all is said and done, the victims of this disaster will get the relief that they are owed. We’re not going to abandon our fellow citizens. We’ll help them recover and we will help them rebuild.

President Barack Obama delivers remarks and takes questions from the press in the East Room of the White House,

To ensure that a spill of this magnitude never happens again, President Obama outlined immediate steps the Department of the Interior will take to reform the Minerals Management Service, which is responsible for issuing drilling leases and regulating oil facilities:
Additionally, after reading the report’s recommendations with Secretary Salazar and other members of my administration, we’re going to be ordering the following actions: First, we will suspend the planned exploration of two locations off the coast of Alaska. Second, we will cancel the pending lease sale in the Gulf of Mexico and the proposed lease sale off the coast of Virginia. Third, we will continue the existing moratorium and suspend the issuance of new permits to drill new deepwater wells for six months. And four, we will suspend action on 33 deepwater exploratory wells currently being drilled in the Gulf of Mexico.

The President also made the broader point that this tragedy should serve as a “wake-up call” for Americans that our dependence on oil is not sustainable. Focusing our resources on renewable energy will not only protect our environment, but “it will it will create a new, homegrown, American industry that can lead to countless new businesses and new jobs.”
President Obama is scheduled to make his second trip to the Gulf Coast region tomorrow.

President Barack Obama delivers remarks and takes questions from the press in the East Room of the White House,

/**
* This script allows for inter- and intra- page arbitrary video
* time index linking and is pretty namespace safe,
* keeping everything that needs to be “global” in MAK.
*/

var MAK = MAK || {};

// Logging and debugging functions..
MAK.log = function (message) {
if (MAK.debugMode && window.console) {
console.log(message);
}
};

// Listening functions… which may do other things.. >.<
MAK.listener = {};
MAK.listener.loaded = function (obj) {
MAK.log('media loaded');
};
MAK.listener.state = function (obj) {
if ((obj.newstate === 'PLAYING') && (MAK.seek.flag)) {
MAK.seek.flag = false;
setTimeout(function () {
MAK.player.sendEvent('SEEK', MAK.seek.index);}, 100);
}
MAK.oldState = obj.oldstate;
MAK.currentState = obj.newstate;
MAK.log('state: ' + MAK.oldState + ' -> ' + MAK.currentState);
};
MAK.listener.time = function (obj) {
MAK.currentTime = obj.position;
MAK.duration = obj.duration;
};
MAK.addListeners = function () {
if (MAK.player.addModelListener) {
MAK.log('adding listeners');
MAK.player.addModelListener('LOADED', 'MAK.listener.loaded');
MAK.player.addModelListener('STATE', 'MAK.listener.state');
MAK.player.addModelListener('TIME', 'MAK.listener.time');
} else {
setTimeout(function () {
MAK.addListeners();}, 100);
}
};

// Play functions..
MAK.seek = function (seconds) {
MAK.seek.index = parseInt(seconds, 10);
if (MAK.currentState === 'PLAYING') {
MAK.log('seek: currentState is “PLAYING”.. sending SEEK to ' + MAK.seek.index);
MAK.player.sendEvent('SEEK', MAK.seek.index);
} else {
MAK.log('seek: currentState is not “PLAYING”.. sending PLAY event');
MAK.seek.flag = true;
MAK.player.sendEvent('PLAY', true);
}

// Move to view the video player.
jQuery('html,body').animate({scrollTop: jQuery(MAK.player).offset().top-75}, 500);
};
MAK.startCheck = function () {
// If the current URL video indexes, make it happen.
var startMatch, startTime;
startMatch = String(document.location).match(/#vseek(\d+)$/);
MAK.log(startMatch);
if (startMatch) {
startTime = Number(startMatch[1]);
MAK.log(startTime);
if (startTime) {
setTimeout(function () {
MAK.seek(startTime);}, 200);
}
}
};

// Ready function..
MAK.playerInit = function () {
MAK.player = jQuery('#MAKhelper').siblings('div.embed').find('.swftools-wrapper object')[0];
// See if the player is fully loaded yet.
if (!MAK.player || !MAK.player.addModelListener) {
setTimeout(function () {
MAK.playerInit();}, 100);
} else {
MAK.addListeners();
//MAK.startCheck();
}
};

// Link setup function..
MAK.linkSetup = function () {
jQuery('a[href~=#vseek]').click(function(e) {
e.preventDefault();
var match, seconds;
match = this.getAttribute(“href”, 2).match(/#vseek(\d+)$/);
if (match) {
seconds = Number(match[1]);
if (seconds) {
MAK.seek(seconds);
}
}
});
};

jQuery(function () {
// Action..
//MAK.debugMode = true;
MAK.playerInit();

// Setup links.
MAK.linkSetup();
});

Fuente: White House.gov Blog Feed

No comments

Leave a comment

Image Navigator

Endless Cricket Merry-Go-Round Continues With CLT20Poll: What do you really want in your next phone?Nvidia CEO Confirms Quad-core Android Tablets Coming By The End Of The YearBystanders play key role in bullying, expert saysjkavcnn
		bradshaw
		subscribe
		itunes
		Photo Essay: Where Are India’s Working Women?Reforming Wall Street, Stopping Improper Payments, and Bringing Relief to Our Friends and Neighbors Looking for WorkPSA: You Might Want to Check Your Favorite Development Forums for Alpha ICS Builds for Your PhonesThe Creatures of Darksiders II Welcome DeathMyFantasyLeague.com Giveaway!!!!Sexify Your Navigation and Speech-Enabled Apps with Ivona Text-to-Speech HQForging Ahead on Middle East Peace TalksVerizon Announces In-House Network Enhancements for Baltimore’s M&T Bank StadiumLittle Big Planet Marvel Costume Pack 2 this TuesdayAlbum Review: Iggy Pop – ‘Funtime’ (MMRX)Opinion: ASUS shows they understand the tablet market with the $250 MeMO 370TManufacturing Our Nation's Clean Energy FutureBoeing 787 Withstands Lightning StrikeComiXology Brings DC Comics App to AndroidBridge School Benefit 2011 Lineup AnnouncedIndia Journal: Why the Big Fuss About Starbucks in India?FCC Teardown Reveals Lytro Camera SecretswebOS 2.0 coming soon to Pre, Pixi, and Pre PlusShopSavvy 4 Coming to Android TomorrowMike Bell and Jerome Harrison Swap Teams: Fantasy ImpactFreeApps lets you install a ton of quality free applications at onceLittleBigPlanet Community Update – The Cha Cha Cha editionHigh-res pics of Motorola’s Tegra powered Honeycomb tabletGrab an Angry Birds Plush Before Supplies Run Out