reflections
Chargers strive to stay afloat in tilt with…

Written by

The Sports Network

Theismann: passing is ‘not Baltimore Ravens…

By Edward Lee

7:30 a.m. EST, November 18, 2011

A good number of Ravens fans are unhappy with and/or puzzled by the offense’s run-pass ratio in the team’s 22-17 loss to the Seattle Seahawks Sunday and through the first nine games of the season.

Count Joe Theismann as a member of the “puzzled” club.

The current NFL Network analyst and former Washington Redskins quarterback said asking quarterback Joe Flacco to throw the ball a career-high 52 times and giving running back Ray Rice just five carries Sunday doesn’t fit with what he perceives as the identity of the Ravens offense.

“It’s not Baltimore Ravens football,” Theismann said. “The Baltimore Ravens are, in my opinion, most effective offensively when they have a running game to be able to work off of. I think just dropping Joe Flacco in the pocket 50 times is not what the Ravens are all about. First of all, if there’s a lot of incompletions or dropped balls or sacks, you’re putting your defense out on that field for a long, long time. It shouldn’t be that way. When I look at the talent at the offensive side of the ball, this should be a very balanced offense. It should be an offense that has the ability to run the football and then use your play-action and then move Joe around and drop him back and take your shots down the field. Let [wide receiver] Anquan [Boldin] keep the chains moving, use your tight ends, pick up first downs. That’s the way I see the Baltimore Ravens offense. I don’t see them like New England where you’re going to throw the ball 65 percent of the time and run it 35 percent.”


If anybody needs tickets to games, remember to click the tickets link at the top.

Ravens’ Ngata hit with $15K fine for roughing Jets…

Baltimore Ravens defensive end Haloti Ngata was fined $15,000 by the NFL for roughing the passer, a league source told NFL Network insider Jason La Canfora on Friday.

Ngata was punished for leading with his helmet on a second-quarter sack of New York Jets quarterback Mark Sanchez during the Ravens’ 34-17 victory last Sunday night.


NFL RedZone

Watching football on Sundays will be a whole new experience with NFL Network’s channel, NFL RedZone. Find out why.

Other fines revealed Friday:

» Oakland Raiders defensive tackle Richard Seymour received two $7,500 fines for infractions in last Sunday’s 31-19 loss to the New England Patriots, his former team, according to a league source. Seymour was docked $7,500 for unnecessarily driving Patriots quarterback Tom Brady into the ground on a first-quarter sack. Seymour also was penalized for unnecessary roughness for grabbing Patriots running back BenJarvus Green-Ellis’ facemask during the fourth quarter.

» Patriots safety Patrick Chung was fined $7,500 for his unnecessary-roughness penalty on a hit of Raiders running back Darren McFadden during the fourth quarter, according to the Boston Herald.

» Arizona Cardinals cornerback Patrick Peterson was fined $5,000 for hitting New York Giants kicker Lawrence Tynes on a field-goal attempt during last Sunday’s 31-27 loss, according to azcardinals.com.

» Washington Redskins linebackers Rob Jackson and Perry Riley each were fined $15,000 for plays in Sunday’s 17-10 victory over the St. Louis Rams, according to The Associated Press. Jackson was fined for driving Rams quarterback Sam Bradford to the ground. Perry was docked for striking a defenseless player who was fielding a punt.

The Associated Press contributed to this report.

‘;
div.set(“innerHTML”, s);
}
};

// TEST/STAGE/PROD code
var cfg = {
method: “GET”,
on: {
success: handleSuccess,
failure: handleFailure
}
};
var sUrl = url + “?” + params; // this is set in the old code at the beginning of the showPoll function
// Y.log(“POLLS.TAG: Y.io(sUrl, cfg) sUrl = ” + url);
var request = Y.io(sUrl, cfg);

}

function submitVote(voteURL, option_id, securityKey, hashSecurityKey, poll_id, divId) {
// Y.log(“POLLS.TAG: submitVote called”);
castVoteFlag = poll_id;
voteURL += “?option_id=” + option_id + “&key=” + securityKey + “&hkey=” + hashSecurityKey + “&poll_id=” + poll_id;
var handleSubmitSuccess = function(ioId, o){
// Y.log(“POLLS.TAG: handleSubmitSuccess called.”);
parseInfo(o.responseText, divId);
};

// TEST/STAGE/PROD code
var cfg = {
method: “POST”,
on: { success: handleSubmitSuccess }
};
var sUrl = voteURL;
// Y.log(“POLLS.TAG: submitVote. Y.io(sUrl, cfg), sUrl = ” + sUrl);
var request = Y.io(sUrl, cfg);

}

function setIframeHeight(cookieUoF, cookieSO, divId) {
// Y.log(“POLLS.TAG: setIframeHeight called, cookieUoF = ” + cookieUoF + “, cookieSO = ” + cookieSO + “, divId = ” + divId);
var cookieContent = “”;
var cookieName = “”;
if ( cookieUoF.length > 0 ) {
cookieContent = cookieUoF;
cookieName = “nflpollUoF”;
}
else if ( cookieSO.length > 0 ) {
cookieContent = cookieSO;
cookieName = “nflpollSO”;
}
else {
cookieName = “”;
}
// Y.log(“POLLS.TAG: inside setIframeHeight, cookieName.length = ” + cookieName.length);
if ( cookieName.length > 0 ) {
var val = cookieContent.split(“V”);
if ( val.length > 1 ) {
var pollID = val[0];
var pollType = val[1];
// remove cookie if expired in case pollType == SessionOnly
if ( pollType == 1 ) {
// Y.log(“POLLS.TAG: [SO] Remove Cookie If Expired”);
removeExpiredCookie(“nflpollSO”);
}
// Y.log(“POLLS.TAG: writeJSCookie called, pollID = ” + pollID + “, cookieContent = ” + cookieContent + “, pollType = ” + pollType+ “, divId = ” + divId);
writeJSCookie(pollID,cookieContent, pollType, divId);
}
}
};

function writeJSCookie(pollID, sCookieContent, pollType, divId) {
// Y.log(“POLLS.TAG: inside writeJSCookie, pollID = ” + pollID + “, sCookieContent = ” + sCookieContent + “, pollType = ” + pollType+ “, divId = ” + divId);
if ( pollType == 1 ) {
handleNoCookieAkamiCase(“nflpollSO”, pollID, sCookieContent, divId);
}
else {
// Y.log(“POLLS.TAG: calling handleNoCookieAkamiCase, pollID = ” + pollID + “, sCookieContent = ” + sCookieContent + “, divId = ” + divId);
handleNoCookieAkamiCase(“nflpollUoF”, pollID, sCookieContent, divId);
}
};

// Check if first time poll then append new cookie content to existing cookie.
function handleNoCookieAkamiCase(cookieName, pollId, sCookieContent, divId){
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase called. ” + “cookieName = ” + cookieName + “, pollId = ” + pollId + “, sCookieContent = ” + sCookieContent + “, divId = ” + divId );
var cookieContent = null;
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase. ” + “globalCookieContent = ” + globalCookieContent );
if ( globalCookieContent != ” ) {
cookieContent = globalCookieContent;
}
else {
cookieContent = Y.Cookie.get(cookieName);
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase. cookieContent = ” + cookieContent);
if ( cookieContent == null ) cookieContent = ”;
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase. cookieContent = ” + cookieContent);
}
// if no cookie content for specific poll. **new element inside of cookie**
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase. sCookieContent.length = ” + sCookieContent.length + “, cookieContent = ” + cookieContent);
if ( sCookieContent.length > 0 && cookieContent.indexOf(pollId) 0 ){ //session only case
updatedCookie = expTime[0] + “V” + expTime[1] + “V” + getExpMillis(0, parseInt(expTime[2]), 0) + “V” + expTime[3] + “V” + expTime[4] + “E” + cookieContent;
globalCookieContent = updatedCookie;
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase. session only case. cookieName = ” + cookieName + “, updatedCookie = ” + updatedCookie);
Y.Cookie.set(cookieName, unescape(updatedCookie),
{
expires: getExpDate(7, 0, 0),
path: “/”
}
);
}
else { // ulimited or fixed case
updatedCookie = sCookieContent + cookieContent;
globalCookieContent = updatedCookie;
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase. unlimited or fixed case. cookieName = ” + cookieName + “, updatedCookie = ” + updatedCookie);
Y.Cookie.set(cookieName, unescape(updatedCookie), { path: “/” , domain: “.nfl.com” } );
}
}
else { // if we have element inside cookie
if ( cookieContent ) {
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase. element inside cookie. cookieContent = ” + cookieContent + “, pollId = ” + pollId);
var poll = getSingleCookie(cookieContent, pollId);
if ( null != poll ) {
handlePollExipred(cookieName, poll, divId); //flip if curr votes >= max votes
}
}
}
// Y.log(“POLLS.TAG: handleNoCookieAkamiCase. Y.Cookie.get(‘nflpollUoF’) = ” + Y.Cookie.get(‘nflpollUoF’));
};

function removeExpiredCookie(cookieName) {
var cookieContent = Y.Cookie.get(cookieName);
var updatedContent = skipPoll(cookieContent);
// setCookie(cookieName, updatedContent, getExpDate(7, 0, 0), ‘/’);
Y.Cookie.set(cookieName, unescape(updatedCookie),
{
expires: getExpDate(7, 0, 0),
path: “/”,
domain: “.nfl.com”
}
);
return updatedContent;
};

function skipPoll(cookieContent) {
var currMillis = getExpMillis(0,0,0);
var updateCookieContent = “”;
var polls = cookieContent.split(“E”);
for ( var ctr=0; ctr

Thanks for reading! .

NFL Power Rankings, Week Four: Baltimore Ravens,…

By Matt Conner

Editor

Bookmark and Share


The latest Power Rankings finds the Ravens challenging the Packers for NFL’s best overall team.

Follow , and

Like SB Nation Kansas City on Facebook.

Oct 4, 2011 – What a fantastic weekend in the NFL once again with several games that surprised, but none more so than the incredible Dallas Cowboys vs. Detroit Lions match-up. The comeback by Detroit has the Motor City overjoyed while Jerry Jones and his team are trying to figure out what’s wrong (besides Tony Romo, of course). In other games, the Baltimore Ravens continue to show they might just be the best team in the NFL, while the Rams might just be the worst. No one knows what is wrong in St. Louis.

That said, it’s time for another Power Rankings after Week Four in the NFL. Check it out below:

1. Green Bay Packers (4-0) - The Packers were such a great story last year as the No. 6 playoff, but now there’s no denying their dominance over all.

2. Baltimore Ravens (3-1) –
They’ve only allowed 57 points all season, second to Titans, and the offense can go high octane.

3. New England Patriots (3-1) –
Brady and Belichick responded as we predicted and should win 12 games this year.

4. New Orleans Saints (3-1) - Defense needs a dominant performance at some point to believe they can go all the way. Upcoming Buccaneers game in Week 6 should provide chance.

5. Detroit Lions (4-0) – Cowboys beat themselves on this one and Lions should be 3-1. Still Stafford-to-Johnson looks historically good. 

6. Tampa Bay Buccaneers (3-1) – Good Monday night win for a quarterback who will undoubtedly be featured in primetime for years to come.

7. Buffalo Bills (3-1) - The Bengals clearly found a weakness, because the Bills defense kept this one close. The offense was inept at every turn.

8. Houston Texans (3-1) – Loss of Andre Johnson hurts prolific offense, but defense played great against Steelers.

9. San Diego Chargers (3-1) – Chargers have only scored 6 more points than they’ve allowed, worst of any division leader.

10. Tennessee Titans (3-1) - Least points allowed in NFL shows Mike Munchak’s stamp on team. If they beat Pittsburgh on Sunday, everyone will be talking about Titans as sleepers. You heard it here first.

11. New York Jets (2-2) - Rex Ryan is full of hot air, but that’s no surprise. What is surprising is that his team might be as well. 

12. Pittsburgh Steelers (2-2) – Tied with Browns and Bengals in AFC West with Big Ben injured. Upcoming games against Jags and Cardinals are just what they need. 

13. Atlanta Falcons (2-2) –
Win against Eagles doesn’t look so hot. Neither does Sunday’s two point win over Seahawks.

14. Oakland Raiders (2-2) – Schizophrenic team needs defense to become consistent. Dangerous enough to win AFC West and then some. Could also finish 8-8 again.

15. New York Giants (3-1) - Despite significant injuries on defensive side of the ball, the G-Men have adjusted impressively.  

16. San Francisco 49ers (3-1) -
They play Buccaneers and Lions next two weeks. That should even out the schedule, but it’s clear Jim Harbaugh is working some magic in the Bay Area.

17. Philadelphia Eagles (1-3) – Season is going down the drain, but NFC East isn’t looking good either. Things will come together soon starting this week for Eagles.

18. Chicago Bears (2-2) – Played Panthers a bit too close. Showdown with Lions this week will turn Bears season one way or the other.

19. Dallas Cowboys (2-2) - There’s absolutely no reason for the Cowboys to have lost Sunday. Horrible coaching and quarterback play will kill a team’s chances down the stretch.

20. Washington Redskins (3-1) – Do not be fooled by ridiculously easy schedule (including upcoming games with Panthers, Eagles). This is not even a .500 team.

21. Cleveland Browns (2-2) – I
f they don’t take advantage of easy front half of schedule, they’ll end up 5-11 on season.

22. Cincinnati Bengals (2-2) – Andy Dalton might or might not be the next Carson Palmer, but the defense absolutely ate the Bills for lunch on Sunday.

23. Kansas City Chiefs (1-3) –
Great work by Matt Cassel in face of doubters and Vikings defense. Chiefs play winless Colts next week, so heading toward .500 could come soon.

24. Carolina Panthers (1-3) - Defensive woes are going to keep this powerful offense at bay all season.

25. Denver Broncos (1-3) - Von Miller with two more sacks in losing effort. That will be the same headline all season. 

26. Jacksonville Jaguars (1-3) – Gabbert showed strong signs of life on Sunday but there’s a long way to go. This team could contend in the AFC South but not with a rookie QB.

27. Arizona Cardinals (1-3) -
Cardinals came close against Giants and should enjoy feasting on the Vikings’ carcass this weekend.

28. Minnesota Vikings (0-4) – Loss to Chiefs cements fact that Vikings are indeed as bad as their record. Hard to believe with Jared Allen, Adrian Peterson and company.

29. Indianapolis Colts (0-4) - Curtis Painter on the road tells you all you need to know. If not for superhuman efforts by Pierre Garcon, they would have looked horrible.

30. Miami Dolphins (0-4) – Sparano out in a few weeks. It won’t matter who they bring in.

31. Seattle Seahawks (1-3) - Tarvaris Jackson couldn’t get job done. Surprise anyone?

32. St. Louis Rams (0-4) -
The team lost Danny Amendola. Not Johnny Unitas. Steve Spagnuolo has allowed the wheels to fall off of this one.

Follow , and

Like SB Nation Kansas City on Facebook.

Do you like this story?

That’s all the news for today.

REFILE-NFL-Jets’ Ryan relishing chance to beat…

The New York Jets and Baltimore Ravens
clash in Week Four of the National Football League (NFL) season
and while the teams have much in common there is a sense of
rivalry fired by Jets head coach, and former Raven, Rex Ryan.

Both teams are 2-1 this season, have been regulars in the
American Football Conference (AFC) playoffs in recent years but
neither has made the Super Bowl since the Ravens triumph
following the 2000 season.

Each have outstanding players on defense – Ed Reed and Ray
Lewis for Baltimore, Darrelle Revis for the Jets – but have
some lingering question marks over their quarterbacks.

Ravens quarterback, 26-year-old Joe Flacco, and New York’s
Mark Sanchez, two years his junior, have both proven to be
worthy of their high ranking in the draft but neither have
sealed their status by taking their team to the biggest game.

But it is on the sidelines where the tension between the
two teams can be felt.

Ryan spent 10 years with the Ravens, ending as defensive
co-ordinator, and it still rankles that current Ravens coach
John Harbaugh pipped him to the top job at the club.

Although Ryan’s Jets lost to the Ravens last year he
believes he has proven his worth in New York and also feels the
need to spell that out.

“We have not beat them since I’ve been here, that’s for
sure, but the fact of the matter is, we all said we were going
to meet in the AFC championship game. Now, we haven’t won the
AFC championship game, but we’ve got there two years in a row.
The Ravens haven’t. So you can throw that one right back at
them as well,” Ryan said earlier this week.

“I’ve gone to the playoffs every year, and I’ve gone to the
championship game every year since I’ve been here as well. But
who cares? This is what it is. They know I did a great job
there for 10 years.”

It should be a gripping encounter in Baltimore on Sunday
that will conclude a day which is expected to offer some tests
for the NFL’s three undefeated teams.

The Buffalo Bills are the most surprising team at 3-0 and
they will fancy their chances of extending their winning start
to the season when they visit the Cincinnati Bengals (1-2).

The Detroit Lions (3-0) take on a Dallas Cowboys team that
were boosted by their victory over the Washington Redskins on
Monday while the Super Bowl champion Green Bay Packers will
expect a fourth victory at Denver.

The New England Patriots, who suffered a shock defeat to
Buffalo last week, face another tricky test on the road against
an Oakland Raiders (2-1) team that is showing signs of being a
playoff threat this season.

The Raiders have gone eight seasons without a winning
record and will test the Patriots defense against the run in
the first game between the two teams in three years.

Michael Vick’s rather bruising season for the Philadelphia
Eagles (1-2) should continue at home to the San Francisco 49ers
if he recovers from a hand injury in time.

The Eagles are smarting from their defeat to the New York
Giants and desperate to avoid a third straight loss while the
49ers (2-1) are looking for another road win after last week’s
13-8 win at Cincinnati.

 

If you like reading our blog, remember to bookmark it.